Process myProcess = new Process();
myProcess.StartInfo.FileName = "firefox.exe";//"firefox.exe";// "iexplore.exe"; //chrome //iexplore.exe //哪个浏览器打开
myProcess.StartInfo.Arguments = result;
myProcess.Start();
时间: 2024-10-10 17:08:02