Method NextValidToken
NextValidToken()
When implemented by a class, parses text from current position to the next valid (non-whitespace, non-comment) token and updates TokenPos
, CurrentPos
and TokenString
properties.
int NextValidToken()
Returns
- int
Next valid token.
NextValidToken(out string)
When implemented by a class, parses text from current position to the next valid (non-whitespace, non-comment) token and updates TokenPos
, CurrentPos
and TokenString
properties.
int NextValidToken(out string str)
Parameters
str
stringRetrieves token string for the next valid token.
Returns
- int
Next valid token.