因为用的界面是英文版本
所以下面中英文夹杂 不好意思
上网查了许多资料
有人说exe file必须是 .net 支援的档案
但我也有看到其他类别的档案似乎也能执行
目前把exe file已经加入专案并且把property设成如下
Build Action: Embedded Rescource
Copy to Output: Copy if newer
我用的方法是
Process p = new Process();
p.StartInfo = "file.exe";
p.Start();
但是Start那行会显示找不到档案的错误
有人有遇过这种问题吗?