How can I find this information :

think we started this process :

testFile.exe i- 100 k- "hello" j-"C:\" "D:\Images" f- "true" 

Now how can I get main argument when application started so I have :

int i = ... ; //i will be 100
string k = ... ; // k = hello
string[] path = ... ; // = path[0] = "C:\" , path[1] = "D:\Images"
bool f = ... ; // f = true;

regards

link|improve this question

While this is not what you're asking about, you should be aware that this command-line syntax doesn't adhere to any of the usual conventions (e.g. -x ... on UNIX-like systems, or /x ... on Windows systems) and people will probably have a hard time remembering it. – stakx Aug 7 '10 at 12:50
2  
Consider writing -i 100 -k "hello" etc, instead of i- 100 k- "hello" - almost all programs out there use the -i style and for good reasons. – romkyns Aug 7 '10 at 12:50
feedback

4 Answers

up vote 1 down vote accepted

The arguments are passed to the Main function that is being called:

static void Main(string[] args) 
{
    // The args array contain all the arguments being passed:
    // args[0] = "i-"
    // args[1] = "100"
    // args[2] = "k-"
    // args[3] = "hello"
    // ...
}

Arguments are in the same order as passed in the command line. If you want to use named arguments you may take a look at this post which suggests NDesk.Options and Mono.Options.

link|improve this answer
2  
Right, except that the array is zero based, not one based. – Guffa Aug 7 '10 at 12:45
Yeah - some environments pass the exe name in the 0th argument, but fortunately this stupid convention is gone from .NET. – romkyns Aug 7 '10 at 12:49
feedback

You could use NDesk.Options. Here is their documentation.

link|improve this answer
feedback

You can use Environment.CommandLine or Environment.GetCommandLineArgs()

String[] arguments = Environment.GetCommandLineArgs();

More info on MSDN

link|improve this answer
feedback

As already answered, you can use the string[] args parameter or Environment.GetCommandLineArgs(). Note that for CLickOnce deployed apps you need something else.

You can do your own processing on the string[] or use a library, like this one on CodePlex.

For some tricky details on spaces in filenames and escaping quotes, see this SO question.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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