(Newbe Question)
I'm playing around with Lists
I can do:
I can't do:Code:Dim myList(1) As List(Of String)
the IDE returns "Arrays cannot be declared with 'New'"Code:Dim myList(1) As New List(Of String)
I circumvent the 'problem' by putting
in the Form Load event.Code:myList(0) = New List(Of String)
myList(1) = New List(Of String)
The question is, is there another way to instantiate the List array?

