J Jon Skeet [C# MVP] Dec 13, 2005 #3 Lloyd Dupont said: Encoding.ASCII.GetString(anAnsiStringAsaByteArray) ? Click to expand... That will only convert the ASCII characters. The OP will need to select the correct code page (eg using Encoding.GetEncoding(int) or Encoding.Default) and use that.
Lloyd Dupont said: Encoding.ASCII.GetString(anAnsiStringAsaByteArray) ? Click to expand... That will only convert the ASCII characters. The OP will need to select the correct code page (eg using Encoding.GetEncoding(int) or Encoding.Default) and use that.