Visual Studio 2019 #c 重定向无法在 process.start 上找到文件
Visual Studio 2019 #c Redirect Not Working on process.start file cannot be found
System.Diagnostics.Process.Start("https://www.youtube.com/");我是初学者,所以我对 visual studio 和 C# Error Message Here.
了解不多
Process.Start用于运行可执行代码,所以你需要传递给它一个可执行文件。例如:
// the @ escapes the backslash characters in the path to the Chrome executable
Process.Start(@"C:\Program Files\Google\Chrome\chrome.exe", "http://www.youtube.com");
根据您系统上 Chrome 的安装方式(或是否安装),您甚至可以 运行:
Process.Start("chrome.exe", "http://www.youtube.com");
System.Diagnostics.Process.Start("https://www.youtube.com/");我是初学者,所以我对 visual studio 和 C# Error Message Here.
了解不多Process.Start用于运行可执行代码,所以你需要传递给它一个可执行文件。例如:
// the @ escapes the backslash characters in the path to the Chrome executable
Process.Start(@"C:\Program Files\Google\Chrome\chrome.exe", "http://www.youtube.com");
根据您系统上 Chrome 的安装方式(或是否安装),您甚至可以 运行:
Process.Start("chrome.exe", "http://www.youtube.com");