Parses text.
public interface IParser<out T>
name | description |
---|---|
TryParse(…) | Attempts to parse the text at the specified position into an instance of type T. (2 methods) |
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
.