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

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
 
A

Arne Vajhøj

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top