I'd like to do something like this:
Dim Foo as String = "a,b,c,d,e"
Dim Boo as List(of String) = Foo.Split(","c)
Of course Foo.Split
returns a one-dimensional array of String
, not a generic List
. Is there a way to do this without iterating through the array to turn it into a generic List
?