G
Guest
Does anyone know how to decode extended ASCII string into extended ASCII bytes?
For example, "ä" is 228 in the extended ASCII character set.
ASCIIEncoding supports 7-bit ASCII, thus every character in the extended set
is decoded as "?".
UnicodeEncoding, UTF7Encoding, UTF8Encoding, UTF32Encoding does not provide
correct results. I was thinking to create a new encoder class, but before
that I would like to know if there is some class in .NET which can do the
encoding.
For example, "ä" is 228 in the extended ASCII character set.
ASCIIEncoding supports 7-bit ASCII, thus every character in the extended set
is decoded as "?".
UnicodeEncoding, UTF7Encoding, UTF8Encoding, UTF32Encoding does not provide
correct results. I was thinking to create a new encoder class, but before
that I would like to know if there is some class in .NET which can do the
encoding.