Get character by its number

  • Thread starter Thread starter Bishoy George
  • Start date Start date
B

Bishoy George

Hi All,
When I hold right alt and write 3 numbers from the right of keyboard, I get
its character like £ from 412.

By which class in .net can I give the number and the class method give me
its corresponding character?

Thank you.
Bishoy
 
You get a string. Convert it first to an integer, and then to character like
this:

string myString = "412";
int myInt = System.Convert.ToInt32(myString);
Char myChar = ChrW(myInt);
 
Back
Top