We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
v1.0.2 - Setup Help
Fluent interface supports the setup of help arguments.
static void Main(string[] args) { var parser = new FluentCommandLineParser(); parser.SetupHelp("h", "help", "?") .Callback(Console.WriteLine); var result = parser.Parse(args); if(result.HelpCalled) return; }
v1.0.0 - Initial Release