Hi,
Dim MyString As String = "Split me up"
Dim MyLetters() As Char = MyString.ToCharArray
For Each c As Char In MyLetters
Trace.WriteLine(c)
Next
Ken
---------------------------
"Larry Bird" <(E-Mail Removed)> wrote in message
news:8CF58079-9C05-4837-94A4-(E-Mail Removed)...
I have a character string that I want to place into an singel character
array. When I run the code below I get the following error: "Specified cast
not valid".
StatusBits is the character string that I want to place into the array
"StatusBitsArray"
Dim StatusBitsArray(8) As String
StatusBitsArray = StatusBits
What I'm i missing?
Thanks
|