AlphaTab.Importer.AlphaTexImporter.IsLetter C# (CSharp) Метод

IsLetter() приватный статический Метод

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
Результат 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 */
        }