G
Guest
I have the following code
for (byte i = 126; i < 159; i++
char c = (char)i
textBox1.Text += i + " " + c +" \r\n";
But this shows me no Umlaut (ä,ö,ü
How can I enable that I can get some umlaut's out of this?
for (byte i = 126; i < 159; i++
char c = (char)i
textBox1.Text += i + " " + c +" \r\n";
But this shows me no Umlaut (ä,ö,ü
How can I enable that I can get some umlaut's out of this?