I wrote a command line option parsing library in C#, based on Perl/CPAN's Getopt::Long. I think it is better than all the others available for C#.
Features include:
- Scalar, array, or hash types for option arguments
- Incrementable options (e.g. --verbose --verbose --verbose for 3x verbose)
- Option bundling if enabled (-zxvf=foo.tar.gz is the
(
Read more... )