IsComma() public method

Determines whether the current token matches an TokenType.Comma token.
public IsComma ( ) : bool
return bool
Ejemplo n.º 1
0
 private void IgnoreComma()
 {
     if (_reader.IsComma()) //optional end of value
     {
         _reader.PullComma();
     }
 }