Parser.Create<T> method

Creates a parser from a delegate.

public static IParser<T> Create<T>(Func<TextPosition, IParseResult<T>> parse)

Remarks

For maximum performance, derive from Parser.

See Also