我需要從一個exe文件從運行exe文件
ProcessStartInfo startInfo = new ProcessStartInfo(@"exeParser.exe");
startInfo.WindowStyle = ProcessWindowStyle.Normal;
startInfo.CreateNoWindow = false;
startInfo.RedirectStandardOutput = true;
startInfo.UseShellExecute = false;
startInfo.Arguments = ??
我不知道調用方法如何調用的方法和參數傳遞
任何幫助,請的方法?
的可執行文件是我的,但我使用的Web應用程序的東西有問題,所以我認爲這將是更好地稱呼其爲一個過程
感謝
我已經編譯了我的最後一個.exe文件已經很多年了,所以我可能是錯的,但這甚至有可能嗎?我真的不這麼認爲。 – 2010-05-22 11:33:41
我也不知道:/ – Lilz 2010-05-22 11:34:07