how to display all the code points in a code page ASMO-708

  • Thread starter Thread starter Tony Johansson
  • Start date Start date
T

Tony Johansson

Hi!

If I have for example code page 708 that is named ASMO-708 how do I write
the code that can dispaly all the code point in this code page ?

This code page is some kind of arbisk.

//Tony
 
If I have for example code page 708 that is named ASMO-708 how do I write
the code that can dispaly all the code point in this code page ?

This code page is some kind of arbisk.

Try:

byte[] b = new Byte[256];
for(int i = 0; i < b.Length; i++) b = (byte)i;
string s = Encoding.GetEncoding(708).GetString(b, 32, 224);
MessageBox.Show(s);

Arne
 
Back
Top