the conversion from string to character doesnt work like it does in vb apparently
i got my code to work but now im curious as to i how convert "A" to a char quickly and easily since char c = "A"c; doesnt work
whats the deal?
Dim b() As Byte = Encoding.ASCII.GetBytes("A".ToCharArray)
Dim s() As Byte = Encoding.ASCII.Convert(System.Text.Encoding.UTF8, System.Text.Encoding.ASCII, b)
MessageBox.Show(s(0))
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.