CodeBox.CodeLexer.TokenList.IsKeyword C# (CSharp) Метод

IsKeyword() приватный Метод

private IsKeyword ( string identifier ) : bool
identifier string
Результат bool
        private bool IsKeyword(string identifier)
        {
            foreach (string s in keywords)
                if (s == identifier)
                    return true;

            return false;
        }