Ancestry.QueryProcessor.Parse.LexerToken.IsSymbol C# (CSharp) Méthode

IsSymbol() public méthode

Return true if the token's type is Symbol it matches the given symbol.
public IsSymbol ( string symbol ) : bool
symbol string
Résultat bool
        public bool IsSymbol(string symbol)
        {
            return Type == TokenType.Symbol && Token == symbol;
        }