Contact: aviboots(AT)netvision.net.il
39,971 questions
51,913 answers
573 users
using System; class Program { static void Main() { char ch = 'a'; Console.WriteLine(Char.IsLower(ch)); ch = 'Z'; Console.WriteLine(Char.IsLower(ch)); } } /* run: True False */