J
jens Jensen
hello,
i'm doing utf-8 encoding the following way.
string message;
UTF8Encoding utf8 = new UTF8Encoding();
Byte[] encodedBytes = utf8.GetBytes(message);
message = encodedBytes.ToString();
can someone correct me?
many thanks
JJ
i'm doing utf-8 encoding the following way.
string message;
UTF8Encoding utf8 = new UTF8Encoding();
Byte[] encodedBytes = utf8.GetBytes(message);
message = encodedBytes.ToString();
can someone correct me?
many thanks
JJ