Process myProcess = new Process();
myProcess.StartInfo.FileName = "firefox.exe";//"firefox.exe";// "iexplore.exe"; //chrome //iexplore.exe //哪个浏览器打开
myProcess.StartInfo.Arguments = result;
myProcess.Start();
2023-11-20 07:56:15
Process myProcess = new Process();
myProcess.StartInfo.FileName = "firefox.exe";//"firefox.exe";// "iexplore.exe"; //chrome //iexplore.exe //哪个浏览器打开
myProcess.StartInfo.Arguments = result;
myProcess.Start();