I need to create an array of string arrays. Example:
> Array(0) = {"1", "a", "e"}
> Array(1) = {"word", "at", "war"}
> ...
I did:
Dim array()() As String
For i = 0 to 10
array(i) = New String() {"dfdd", "dda", "aa", "bnb", "3", "ghj", "ht"}
Next i
But it fails with the exception:
Object reference not set to an instance of an object.