I'm not sure I've chosen a proper title for this thread, anyway, I want to test if a dynamic array has already been ReDim-ed. In other words, what should I replace '???' by?

Code:
Dim MyArray() As Integer
ReDim MyArray(10)

If ??? Then
    'Do this
Else
    'Do that
End If
??? means that the bold statement has been executed.