Hello,
I need to collect information from the station, and I'm getting it. But in the received text I can not apply an Encoder to appear the special characters correctly:
I'vetriedusing"ISO-8859-1", and other forms of encode too
string blah = System.Text.Encoding.Unicode.GetString(System.Text.Encoding.Unicode.GetBytes(suaString));
or
byte[] bytes = Encoding.Default.GetBytes(sOutput);
sOutput = Encoding.UTF8.GetString(bytes);
var teste = Encoding.UTF8.GetString(bytes);