内容简介:using System.Diagnostics;//首先导入这个命名空间 Process p = new Process();//实例化一个独立进程 p.StartInfo.FileName = "cmd.exe";//进程打开的文件为Cmd p.StartInfo.UseShellExecute = false;//是否启动系统外壳选否 p.StartInfo.Redire...
用户评论
voxtech