Contact: aviboots(AT)netvision.net.il
40,026 questions
51,982 answers
573 users
using System; class Program { static void Main() { char ch = '2'; int val = (int)Char.GetNumericValue(ch); Console.Write(val); } } /* run: 2 */