Hi,
I would like to define a List that contains unknown number of Array of string:
myList = {myArray1, myArray2, … }
myArray1 = {string1a, string1b}
myArray2 = {string2a, string2b}
…
May I know how declare the list?
If I use myList = New List(Of Array), then I have to define myArray1 and myArray2 as Array instead of String[] and I do not know how to print the values of the list.
Please refer to my program as attached and advise.
Thank you.
myList.xaml (8.0 KB)