Possible Duplicate:
Best way to parse command line arguments in C#?

What's the best practice for handling command line arguments?

That is, I want my console application (VC#2008) to be able to handle arguments on command line just like most of the other command line tools do:

> mytool.exe -LongArgument Value -sa value --abcdef

Where the arguments are LongArgument: Value, sa is an abbr. of ShortArgument with value and abcdef are switch-arguments that are just activated when given.

How can I code this in a way that is easily extensible when new arguments come along?

link|improve this question

feedback

closed as exact duplicate by CharlesB, leppie, Henk Holterman, Florian Peschka, Graviton Jun 28 '11 at 12:23

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

1 Answer

up vote 0 down vote accepted

Please use the .net port of the apache commons cli API. This works great.

http://sourceforge.net/projects/dotnetcli/

and the original API for concepts and introduction

http://commons.apache.org/cli/

link|improve this answer
How does this differ from the one stackoverflow.com/questions/491595/… this one? It also seems quite advanced. – Florian Peschka Jun 28 '11 at 9:27
Matter of taste. Just try – Andreas Jun 28 '11 at 9:30
Please stop pasting the exact same answer on multiple questions, even when the answer pertains. – Tim Post Jun 28 '11 at 12:40
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.