如何使用C#中的参数编写启动应用程序的应用程序?

Chr*_*_45 0 c# process

如果我想编写一个用参数启动Firefox的应用程序怎么办?

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Diagnostics;

namespace Launcher
{
  public static class Program
  {
    public static void Main(string[] args)
    {
      Process.Start("C:/Program Files/Mozilla Firefox/firefox.exe");//this is ok
      Process.Start("C:/Program Files/Mozilla Firefox/firefox.exe -P MyProfile -no-remote");// this doesn't work
    }
  }
}
Run Code Online (Sandbox Code Playgroud)

Jan*_*oom 6

您需要指定 process.StartInfo.Arguments

请参阅此问题:从ASP.NET MVC调用应用程序