Parser.Parse<T> method (1 of 2)

Parses the specified text, throwing ParseException on failure.

public static T Parse<T>(this IParser<T> parser, string text)

See Also


Parser.Parse<T> method (2 of 2)

Parses the specified text at the specified start index, throwing ParseException on failure.

public static T Parse<T>(this IParser<T> parser, string text, int startIndex)

See Also