IParser<T>.TryParse method (1 of 2)

Attempts to parse the text at the specified position into an instance of type T.

public IParseResult<T> TryParse(TextPosition position)

Remarks

To parse text, call one of the Parse or TryParse overloads on Parser.

See Also


IParser<T>.TryParse method (2 of 2)

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)

Remarks

To parse text, call one of the Parse or TryParse overloads on Parser.

See Also