Attempts to parse the text at the specified position into an instance of type T.
public IParseResult<T> TryParse(TextPosition position)
To parse text, call one of the Parse
or TryParse
overloads on Parser
.
Attempts to parse the text at the specified position into an instance of type T.
public T TryParse(bool skip, ref TextPosition position, out bool success)
To parse text, call one of the Parse
or TryParse
overloads on Parser
.