: Hi guys can someone please tell me how i can get the ascii code of a character using c#??
:
I havn't compiled this but
it should work.
char c = 'A';
System.Console.Write((int)c);
The trick is to cast to int
===============================
El
PROgrammador Niklas Ulvinge