如题,我用了如下的代码:
Process p = new Process();
p.StartInfo.FileName = Environment.CurrentDirectory + @"\SubroutineList\1\MJRanking_Tool.exe";//(自己写的一个子程序,不能运行)
// p.StartInfo.FileName = @"C:\Program Files\Tencent\QQ\Bin\QQ.exe";(可以运行)
//設定程序名
p.StartInfo.Arguments = "";
p.StartInfo.UseShellExecute = false; //關閉Shell的使用
p.StartInfo.RedirectStandardInput = true; //重定向標準輸入
p.StartInfo.RedirectStandardOutput = true; //重定向標準輸出
p.StartInfo.RedirectStandardError = true; //重定向錯誤輸出
p.StartInfo.CreateNoWindow = true; //設置不顯示窗口
p.Start(); //啟動
求解原因和解决方案