While converting my String to Byte I'm getting all my space characters 0x20 converted to 0x3F, which corresponds with á
I've search the web, but I didn't find anything that might help me... I'm using te following code: Code: Dim Msg As String = "Hello World!" Dim sendByte() As Byte = Encoding.Default.GetBytes(Msg) Would become: Helloáworld! What am I doing wrong? Please help!
