So I want other users to be able to run my programm sending arguments. how to do such thing?
|
feedback
|
|
If you have a Main method (which you'll have with a command-line app) you can access them directly as the args string-array parameter.
If you're some other place in your code you can access the static Environment.GetCommandLineArgs method
| |||
|
feedback
|
|
You mean args when launching? such as Make your main method look like this:
now | |||||||
feedback
|
|
The program is run from a method with this signature
The parameter | |||||||
feedback
|
|
While string[] args works just fine, it's worth mentioning Environment.GetCommandLineArgs. | |||||
|
feedback
|
|
You can read command line arguments from
Note that the following declaration for the Main method is also valid, but then you don't have access to the command line arguments:
See the documentation for more details. | |||
|
feedback
|
|
This is supported by default, and the arguments will appear in the args array passed to your program.
If you say
On a command line, you will receive an args array like this:
It's just up to you to determine what arguments you want, how they will be formatted, etc. | |||
|
feedback
|
|
try these: http://sourceforge.net/projects/csharpoptparse/ http://www.codeproject.com/KB/recipes/command_line.aspx they basically allow you to define args and parse them in an OO way rather than having to lots of string comparisons and stuff like that. i used a similar one for java and it was great | |||
|
feedback
|