无法从字符串转换为 System.Diagnostics.ProcessStartInfo C#
Cannot convert from string to System.Diagnostics.ProcessStartInfo C#
我已经在 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);
这对于 Windows Embedded 6.5 的 Compacted Framework 3.5 效果更好。如果没有 Muhammad imran 的回答,我不会得到这个。
代码如下:
Process myProcess = new Process();
try
{
// true is the default, but it is important not to set it to false
myProcess.StartInfo.UseShellExecute = true;
myProcess.StartInfo.FileName = "http://some.domain.tld/bla";
myProcess.Start();
}
catch (Exception er)
{
Console.WriteLine(er.Message);
}
}
我已经在 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);
这对于 Windows Embedded 6.5 的 Compacted Framework 3.5 效果更好。如果没有 Muhammad imran 的回答,我不会得到这个。
代码如下:
Process myProcess = new Process();
try
{
// true is the default, but it is important not to set it to false
myProcess.StartInfo.UseShellExecute = true;
myProcess.StartInfo.FileName = "http://some.domain.tld/bla";
myProcess.Start();
}
catch (Exception er)
{
Console.WriteLine(er.Message);
}
}