In C# the Main class has string[] args parameter.
What is that for and where does it get used?
|
|
|
From the C# programming guide on MSDN: The parameter of the Main method is a String array that represents the command-line arguments So, if I had a program (MyApp.exe) like this:
That I started at the command line like this:
The Main method would be passed an array that contained three strings: "Arg1", "Arg2", "Arg3". If you need to pass an argument that contains a space then wrap it in quotes. For example:
Command line arguments commonly get used when you need to pass information to your application at runtime. For example if you were writing a program that copies a file from one location to another you would probably pass the two locations as command line arguments. For example:
|
|||
|
|
|
For passing in command line parameters. For example args[0] will give you the first command line parameter, if there is one. |
|||
|
|
|
This is an array of the command line switches pass to the program. E.g. if you start the program with the command " |
|||
|
|
|
The args parameter stores all command line arguments which are given by the user when you run the program. If you run your program from the console like this:
Your args parameter will contain the four strings: "there", "are", "4", and "parameters" Here is an example of how to access the command line arguments from the args parameter: example |
|||
|
|
|
When you run the application, any command line arguments are parsed into an array and passed into your class' main method for your perusal: http://msdn.microsoft.com/en-us/library/cb20e19t(VS.80).aspx |
|||
|
|
|
That is for if you were going to run your application from the command line. These parameters will be accessible in the args array. Go to http://www.c-sharpcorner.com/UploadFile/mahesh/CmdLineArgs03212006232449PM/CmdLineArgs.aspx for more details. |
|||
|
|
|
You must have seen some application that run from the commandline and let you to pass them arguments. If you write one such app in C#, the array This how you process them:
|
||||
|
|
|
Further to everyone else's answer, you should note that the parameters are optional in C# if your application does not use command line arguments. This code is perfectly valid:
|
|||
|
|