> Hi,
>
[quoted text clipped - 3 lines]
> Can the Encoding class method GetEncoding(CodePage) be used to
> achieve the same result.
System.Text.Encoding should do the trick:
// Let's try state-of-the-art EBCDIC 1047 ;-)
Encoding enc = Encoding.GetEncoding(20924);
byte[] bytes = enc.GetBytes("500 €");
All available Win32 code pages and their identifiers are listed here:
http://tinyurl.com/cjwm
Cheers,

Signature
http://www.joergjooss.de
mailto:news-reply@joergjooss.de