c# 打开exe

helei 2019-9-26 920 9/26
 Process process = new Process();
            process.StartInfo.UseShellExecute = false;//是否重定向标准输入 
            process.StartInfo.RedirectStandardInput = false;//是否重定向标准转出 
            process.StartInfo.RedirectStandardOutput = false;//是否重定向错误 
            process.StartInfo.RedirectStandardError = false;//执行时是不是显示窗口
            ProcessStartInfo startInfo = new ProcessStartInfo("dovist.exe", account + " " + password + " " + acc_time + " " + login_time); // 括号里是(程序名,参数)
            //process.StartInfo.CreateNoWindow = false;
            process.StartInfo = startInfo;
            process.Start();
- THE END -

helei

9月26日15:38

最后修改:2019年9月26日
0

非特殊说明,本博所有文章均为博主原创。

共有 0 条评论