Parser.SkipThen<T1,T2> method

Executes one parser after another, ignoring the output of the first parser.

public static IParser<T2> SkipThen<T1, T2>(this IParser<T1> parser, IParser<T2> nextParser)

See Also