Skip to content

Latest commit

 

History

History
24 lines (15 loc) · 768 Bytes

IParser-1.md

File metadata and controls

24 lines (15 loc) · 768 Bytes

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