Rationalist
Programmer
Hi, I'm trying to convert a Ascii string to Unicode, but I fail to do so.
Dim bbb As Byte = Byte.Parse(StringTobeConverted)
System.Text.ASCIIEncoding.Convert(System.Text.Encoding.ASCII, System.Text.Encoding.UTF8, bbb)
And I get the following confusing error:
Value of type 'Byte' cannot be converted to '1-dimensional array of Byte'.
Thanks
Dim bbb As Byte = Byte.Parse(StringTobeConverted)
System.Text.ASCIIEncoding.Convert(System.Text.Encoding.ASCII, System.Text.Encoding.UTF8, bbb)
And I get the following confusing error:
Value of type 'Byte' cannot be converted to '1-dimensional array of Byte'.
Thanks