I am trying to put a string (variable) into an array where each character of the string is a new array var
for example:
if i have
Dim someString As String = "sometext"
Dim someArray As Array
I want to store the above 'sometext' into the array like this:
someArray[0] = s
someArray[1] = o
someArray[2] = m
someArray[3] = e
etc...
any help or advice would be greatly appreciated!! Im sure this is probably easy, but I am new to vb.net
thanks in advance!!!
for example:
if i have
Dim someString As String = "sometext"
Dim someArray As Array
I want to store the above 'sometext' into the array like this:
someArray[0] = s
someArray[1] = o
someArray[2] = m
someArray[3] = e
etc...
any help or advice would be greatly appreciated!! Im sure this is probably easy, but I am new to vb.net
thanks in advance!!!