-
Notifications
You must be signed in to change notification settings - Fork 289
Closed
Labels
Description
suppose you have two options (out of many)
-d, --data supply a data file to load
-m, --mute do not print to the console
Currently, you have to do this:
program -d data.file -m
or
program -m -d data.file
Could you make it possible to combine several value-less options with a single valued option?
program -dm data.file
I've used and written command line parsers for other language platforms that do this. I've found your library superior to all others I've tried on .NET except for this one aspect.
Keep up the good work!