从命令行运行程序时获取输入的参数?

get the parameters entered when the program is runed from thecommand line?

我是C#初学者,最近想开发一个从命令行带一些参数启动的程序。

假设我现在有一个控制台程序 我从命令行 运行 它并提供一些参数,我需要得到 -d "D:\output\"

C:\Program Files\myprogram.exe -d "D:\output\"

static class Program
{
    static void Main(string[] args)
    {
        // your code here; 'args' has the command line arguments
        // i.e. args will be length 2, args[0]==="-d", etc
       
    }
}