I've seen people write custom classes to more easily handle command line options in various languages. I wondered if .NET (3.5 or lower) has anything built in so that you don't have to custom-parse things like:
myapp.exe file=text.txt
|
I've seen people write custom classes to more easily handle command line options in various languages. I wondered if .NET (3.5 or lower) has anything built in so that you don't have to custom-parse things like:
| |||||||
feedback
|
|
| ||||
|
feedback
|
|
Edit: No. But there are parsers that people have built such as... Arguably the best out there: C# Command Line Argument Parser | ||||
|
feedback
|
|
Here is another possible approach. Very simple but it has worked for me in the past.
| ||||
|
feedback
|
|
This is a fairly old post, but here's something I devised and use in all of my console applications. It's just a small snippet of code that can be injected into a single file and everything will work. http://www.ananthonline.net/blog/dotnet/parsing-command-line-arguments-with-c-linq Edit: This is now available on Nuget, and is part of the open-source project CodeBlocks. It was devised to be declaratively and intuitively used, like so (another usage example here):
| ||||
|
feedback
|