-1
我有一個第三方C++ exe文件,即時通訊,從我的C#窗口呼籲下釋放模式運行外部C++ EXE窗體應用程序:在Visual Studio
System.Diagnostics.Process proc = new Process();
proc.StartInfo.Verb = "runas";
proc.StartInfo.FileName = "virtual.exe";
proc.StartInfo.Arguments = outfile + ".vxml";
proc.StartInfo.WorkingDirectory = Application.StartupPath;
proc.Start();
proc.WaitForExit();
它可以完美的,如果我的C#Windows應用程序是在「調試模式「。如果我然後更改爲「發佈模式」它crahses。
任何線索爲什麼會發生這種情況,以及解決它的方法?
非常感謝
爲什麼會崩潰?你怎麼知道它正在崩潰..也許是一個異常對話框? –
您的版本和調試版本是否都針對相同的體系結構(32位或64位)? –
是這兩種配置的目標都是相同的任何CPU – VAAA