Ancestry.QueryProcessor.Parse.Tokenizer.IsReservedWord C# (CSharp) Method

IsReservedWord() public static method

public static IsReservedWord ( string identifier ) : bool
identifier string
return bool
        public static bool IsReservedWord(string identifier)
        {
            return ReservedWords.Contains(identifier);
        }