如何显示命令行参数

可通过顶级语句Main 的可选参数来访问在命令行处提供给可执行文件的参数。 参数以字符串数组的形式提供。 数组的每个元素都包含 1 个参数。 删除参数之间的空格。 例如,下面是对虚构可执行文件的命令行调用:

命令行上的输入 传递给 Main 的字符串数组
executable.exe a b c "a"

"b"

“c”
executable.exe one two "one"

"two"
executable.exe "one two" three "one two"

"three"

注意

在 Visual Studio 中运行应用程序时,可在“项目设计器”->“调试”页中指定命令行参数。

示例

本示例显示了传递给命令行应用程序的命令行参数。 显示的输出对应于上表中的第一项。

// The Length property provides the number of array elements.
Console.WriteLine($"parameter count = {args.Length}");

for (int i = 0; i < args.Length; i++)
{
    Console.WriteLine($"Arg[{i}] = [{args[i]}]");
}

/* Output (assumes 3 cmd line args):
    parameter count = 3
    Arg[0] = [a]
    Arg[1] = [b]
    Arg[2] = [c]
*/

另请参阅