Contact: aviboots(AT)netvision.net.il
41,427 questions
53,974 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 */