AlphaTab.Importer.AlphaTexImporter.IsLetter C# (CSharp) Method

IsLetter() private static method

Checks if the given character is a letter. (no control characters, whitespaces, numbers or dots)
private static IsLetter ( int code ) : bool
code int the character
return bool
        private static bool IsLetter(int code)
        {
            // no control characters, whitespaces, numbers or dots
            return !IsTerminal(code) && (
                    (code >= 0x21 && code <= 0x2F) ||
                    (code >= 0x3A && code <= 0x7E) ||
                    (code > 0x80)); /* Unicode Symbols */
        }