It is easy to split a line of arguments using:
// get arguments for myProg.exe /n /b /c
string.Split(' ');
What about the following list:
// get arguments for myProg.exe /n /b /c:"MyProg 4.0"
Will string split help even in this case?
Thanks.
|
It is easy to split a line of arguments using:
What about the following list:
Will string split help even in this case? Thanks.
| |||||||||
feedback
|
|
Reposting my comment as an answer. Since the command-line arguments come as a string array with argv, there is really no need to do any splitting at all:
If you call the program like:
The only time splitting will be needed is when you're parsing a specific argument. | |||
|
feedback
|
| |||||||||
feedback
|
|
I recommend using NDesk.Options. It's a getopt-like library for C#. | |||
|
feedback
|
|
you should split on the argument separator because i can write the parameters without spaces while still correct: myProg.exe /n/b/c:"MyProg 4.0"
| |||||
feedback
|