winform 指定浏览器打开链接

  Process myProcess = new Process();
  myProcess.StartInfo.FileName = "firefox.exe";//"firefox.exe";// "iexplore.exe";  //chrome  //iexplore.exe //哪个浏览器打开
  myProcess.StartInfo.Arguments = result;
  myProcess.Start();

原文地址:https://www.cnblogs.com/StudyLife/p/3985443.html