I'm looking for a way that I can parse command line arguments into my WPF application with just a way of reading the value of the argument that the user passed.

As an example

application.exe /setTime 5

is there a way for me to have some code where I can just say:

MessageBox.Show(arg("setTime"));

Which will output 5

link|improve this question

possible duplicate of WPF Command Line – Vache Feb 18 at 17:28
1  
Have you tried looking at codeplex? There are a lot of different implementation for command line parsing. – Vladimir Perevalov Feb 18 at 17:30
There are many libraries to do handle command line args, see: stackoverflow.com/questions/491595/… – H.B. Feb 19 at 1:51
feedback

1 Answer

up vote 2 down vote accepted

When you parse the command line put the argument/value pairs in a Dictionary with the argument as the key. Then your arg("SetTime") will become:

MessageBox.Show(dictionary["SetTime"]);

(Obviously you don't want the actual dictionary to be public.)

To get the arguments in the first place you can use:

string[] args = Environment.GetCommandLineArgs();

This will return all the arguments so you will need to parse the array in steps of two (after first checking that the length is a multiple of two + 1):

The first element of the array is the name of the executing program - MSDN Page - so your loop needs to start from one:

for (int index = 1; index < args.Length; index += 2)
{
     dictionary.Add(args[index], args[index+1]);
}
link|improve this answer
Working, was a lot simple than I thought it was. Thanks a lot – Sandeep Bansal Feb 18 at 17:53
btw it's index += 2 – Sandeep Bansal Feb 18 at 17:57
@SandeepBansal - d'oh. Thanks. – ChrisF Feb 18 at 18:02
feedback

Your Answer

 
or
required, but never shown

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