Process和参数执行指定文件的程序
2017-02-13 20:50:04 访问(1672) 赞(0) 踩(0)
Process p = new Process();
p.StartInfo.FileName = oF;
p.StartInfo.RedirectStandardInput = true;
p.StartInfo.UseShellExecute = false;
// 指定参数 //
p.StartInfo.Arguments = "www.slowx.net";
p.Start();
标签:
Process和参数执行指定文件的程序 


上一条:
下一条:
相关评论
发表评论