Skip to content
siywilliams edited this page Mar 4, 2013 · 3 revisions

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

Clone this wiki locally