Hello, I am somewhat of a beginner, but I have not had too much trouble understanding this book until this section:
For Chapter 1 - Section "The Main() Method" - the following sample code is provided at the end:
Quote:
using System;
namespace Wrox
{
class ArgsExample
{
public static int Main(string[] args)
{
for (int i = 0; i < args.Length; i++)
{
Console.WriteLine(args[i]);
}
return 0;
}
}
}
|
Then it says:
Quote:
You can compile this as usual using the command line. When you run the compiled executable, you can pass in arguments after the name of the program, as shown in this example:
ArgsExample /a /b /c
/a
/b
/c
|
However I don't know what "command line" refers to, or where I would input "the name of the program". I have tried using the Windows Command Prompt, as well as the Command Window in Visual Studio, using various commands found on MSDN, and can't make heads or tails of this. Any hints on how to open an executable while passing parameters to its main function as shown above (unless I have misunderstood what the author is saying) would be greatly appreciated.
Before this section, I was just running compiled executables by double-clicking on them in my files. ***Edit: I did it this way because of error CS1619 received in the Visual Studio 2010 Command Prompt because I did not have administrator privileges on the machine I was using.
Thank you for your help.