如何设置C#应用程序接受命令行参数?

时间:2017-03-01 15:33:51

标签: c# command-line-arguments

我创建了一个C#命令行应用程序,可以为我的客户端自动创建一些报告。但是,即使他们使用95%的相同代码,我也希望将它们分成不同的进程。我正在使用Windows任务计划程序来运行它们。如何设置C#应用程序以在运行时接受命令行参数?

我在互联网上找不到任何解释。

2 个答案:

答案 0 :(得分:1)

所有命令行参数都通过string[] args参数传递给您的应用程序。
下面的代码显示了一个示例:

using System.Linq;

namespace MyApp
{
    class Program
    {
        static void Main(string[] args)
        {
            if (args.Contains("/REPORT1"))
            {
                /* Do something */
            }
            else if (args.Contains("/REPORT2"))
            {
                /* Do something */
            }
        }
    }
}

然后,在命令提示符中使用:

C:\MyApp\MyApp.exe /REPORT1

答案 1 :(得分:0)

MSDN

以下代码段将打印从命令行传递的参数数量... string[] args包含参数值...

class TestClass
{
    static void Main(string[] args)
    {
        // Display the number of command line arguments:
        System.Console.WriteLine(args.Length);
    }
}