Anyone have a boilerplate for command line/multiple argument processing??

  • Thread starter Thread starter Drebin
  • Start date Start date
D

Drebin

I have a console C# app that needs to take in a bunch of arguments. I'd like
to process them in any order, for the life of me, I can't remember
specifically how to do that in C++ (been a loooonnng time) and know there
must be a similar shortcut for C#?

In short, I want to be able to easily process these the same:

myprog.exe /i /y /v test.txt
myprog.exe /v /y /i test.txt

Thanks much if anyone can help!!
 
Back
Top