当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C# Environment GetCommandLineArgs()用法及代码示例


在这里,我们将了解 Environment 类的 GetCommandLineArgs() 方法。此方法用于获取 命令行 参数。此方法返回一个字符串数组,其中包含在命令行上传递的参数。

用法:

string [] Environment.GetCommandLineArgs();

参数:

这不接受任何参数。

返回值:

此方法返回一个字符串数组,其中包含在命令行上传递的参数。

异常:

  • System.NotSupportedException

程序:

下面给出了演示使用 Environment 类的 GetCommandLineArgs() 方法的源代码。给定的程序已成功编译并执行。

using System;

class Sample
{
    //Entry point of Program
    static public void Main()
    {
        string[] cmdArg;

        cmdArg = Environment.GetCommandLineArgs();

        Console.WriteLine("Command Line Arguments:");
        foreach (string arg in cmdArg)
        {
            Console.WriteLine("\t"+arg);
        }
    }
}

在这里,我们使用命令提示符执行上述程序以查看在命令行上传递的所有参数。

输出:

D:\>Program.exe 123 ABCD
Command Line Arguments:
        Program.exe
        123
        ABCD



相关用法


注:本文由纯净天空筛选整理自 C# program to demonstrate the use of GetCommandLineArgs() method of Environment class。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。