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:
myapp.exe file=text.txt
Edit: No.
But there are parsers that people have built such as...
Arguably the best out there: C# Command Line Argument Parser