C#启动外部程序后可以打开,但是出现其它异常。

为此找了很多的方法,比如:

Process.Start(p);

 

[DllImport("kernel32.dll")]
public static extern int WinExec(string exeName, int operType)
WinExec(p,5);

非常感谢 http://blog.csdn.net/jiangxinyu/article/details/5396627

终于搞定了,此前就觉得是路径有问题,没想到真是这样。

原文地址:https://www.cnblogs.com/bantongshui/p/3169996.html