gpt4 book ai didi

c# - 无法从字符串转换为 System.Diagnostics.ProcessStartInfo C#

转载 作者:太空宇宙 更新时间:2023-11-03 21:20:13 25 4
gpt4 key购买 nike

我已经在 compact framework 3.5 中创建了我的程序,我正在尝试使用以下代码在我的程序中打开一个 html 文件:

string path = @"Help\index.html";
System.Diagnostics.Process.Start(path);

但是我收到以下错误:

Argument '1': cannot convert from 'string' to 'System.Diagnostics.ProcessStartInfo'

有人可以告诉我我做错了什么吗?

最佳答案

你的代码对我有用;但是,您可以尝试以下代码:

System.Diagnostics.ProcessStartInfo p = new System.Diagnostics.ProcessStartInfo(path); 
System.Diagnostics.Process.Start(p);

或者,您可以尝试:

Process.Start("chrome.exe", path);

关于c# - 无法从字符串转换为 System.Diagnostics.ProcessStartInfo C#,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31321381/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com