If I try splitting a string into an arraylist
Dim arrList As New ArrayList
arrList = Split("a,b,c", ",")
I get this error: Value of type '1-dimensional array of String' cannot
be converted to 'System.Collect ions.ArrayList' .
How can I split a string into an arraylist?
Thanks
Dim arrList As New ArrayList
arrList = Split("a,b,c", ",")
I get this error: Value of type '1-dimensional array of String' cannot
be converted to 'System.Collect ions.ArrayList' .
How can I split a string into an arraylist?
Thanks
Comment