📅  最后修改于: 2020-10-31 02:51:28             🧑  作者: Mango
通过命令行传递的参数称为命令行参数。我们可以在执行代码时将参数发送给Main方法。字符串args变量包含从命令行传递的所有值。
在下面的示例中,我们在程序执行期间传递命令行参数。
using System;
namespace CSharpProgram
{
class Program
{
// Main function, execution entry point of the program
static void Main(string[] args) // string type parameters
{
// Command line arguments
Console.WriteLine("Argument length: "+args.Length);
Console.WriteLine("Supplied Arguments are:");
foreach (Object obj in args)
{
Console.WriteLine(obj);
}
}
}
}
使用以下命令编译并执行此程序。
编译:csc Program.cs
执行:Program.exe Hi,there, how are you?
执行代码后,它将向控制台产生以下输出。
输出:
Argument length: 5
Supplied Arguments are:
Hi
there,
how
are
you?