Parser.TryParse<T> method (1 of 4)

Attempts to parse the specified text.

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

See Also


Parser.TryParse<T> method (2 of 4)

Attempts to parse the specified text at the specified start index.

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

See Also


Parser.TryParse<T> method (3 of 4)

Attempts to parse the specified text.

public static bool TryParse<T>(this IParser<T> parser, string text, out T value)

See Also


Parser.TryParse<T> method (4 of 4)

Attempts to parse the specified text at the specified start index.

public static bool TryParse<T>(this IParser<T> parser, string text, int startIndex, out T value)

See Also