Is Char Lower Letter - CSharp System

CSharp examples for System:Char

Description

Is Char Lower Letter

Demo Code

// Copyright (c)2008-2011 Mark II Software, LLC.  All Rights Reserved.
using System.Text;
using System.Linq;
using System.Collections.Generic;
using System;/*from  ww w. ja va2  s  .  c o  m*/

public class Main{
        public static bool IsLowerLetter(this char c)
        {
            return Char.IsLower(c) && Char.IsLetter(c);
        }
        public static bool IsLower(this char c)
        {
            return Char.IsLower(c);
        }
        public static bool IsLetter(this char c)
        {
            return Char.IsLetter(c);
        }
}

Related Tutorials