Open
Description
Whereas this is the only format now:
Usage:
TesterApp [options] <argument>
I would like to have:
Usage:
TesterApp <argument> [options]
If I specify argument
before options
in Main
like
static void Main(string argument='default', string option1='something')
to be different from
static void Main( string option1='something', string argument='default')