Exemplo n.º 1
0
 public static bool IsLexChar(this int value, LexChar lex)
 {
     return(value == (int)lex);
 }
Exemplo n.º 2
0
 public static bool InLexCharRange(this int value, LexChar lowLex, LexChar highLex)
 {
     return(value >= (int)lowLex && value <= (int)highLex);
 }