Alsing.Text.CharUtils.IsLetter C# (CSharp) Method

IsLetter() public static method

public static IsLetter ( char c ) : bool
c char
return bool
        public static bool IsLetter(char c)
        {
            return IsLetterLookup[c];
        }