Skip to content

Instantly share code, notes, and snippets.

@0x414c49
Created January 2, 2020 13:49
Show Gist options
  • Save 0x414c49/0a42be076a34dec678ce897cb1189402 to your computer and use it in GitHub Desktop.
Save 0x414c49/0a42be076a34dec678ce897cb1189402 to your computer and use it in GitHub Desktop.
CLI 3
public static void Main(string[] args)
{
var app = new CommandLineApplication<Program>(throwOnUnexpectedArg: false);
// rest of CLI implementions
app.HelpOption("-h|--help|-?");
app.Execute(args);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment