IParser<T> interface

Parses text.

public interface IParser<out T>

Members

name description
TryParse(…) Attempts to parse the text at the specified position into an instance of type T. (2 methods)

Remarks

To parse text, call one of the Parse or TryParse overloads on Parser. To create a parser, assemble it from the many parsers provided by Parser or derive a new parser from Parser.

See Also