YAMP.ParseEngine.IsLetter C# (CSharp) Method

IsLetter() public static method

Determines if the given character is a letter character.
public static IsLetter ( Char ch ) : System.Boolean
ch Char The character to be examined.
return System.Boolean
        public static Boolean IsLetter(Char ch)
        {
            return (ch >= 65 && ch <= 90) ||
                (ch >= 97 && ch <= 123);
        }