因為用的界面是英文版本
所以下面中英文夾雜 不好意思
上網查了許多資料
有人說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那行會顯示找不到檔案的錯誤
有人有遇過這種問題嗎?