今天遇到了一个很纳闷的问题
我通过Process调用一个外部程序,但是运行之后根本就没有外部程序被调用的情况
这是什么情况呢?
                    process.StartInfo.Arguments = Config.ServerName+" "+Security.GetUserID();
                    process.StartInfo.WorkingDirectory = Application.StartupPath+"\\debug";
                    process.StartInfo.FileName = "DHInformationDownLoad.UI.exe";
                    process.EnableRaisingEvents = true;
                    process.Exited += new EventHandler(process_Exited);