Posted on 2008-06-16 05:12
nt05 阅读(153)
评论(0) 编辑 收藏 引用 所属分类:
windows nt
调用命令行
Process myProcess = new Process();
myProcess.StartInfo.FileName = "调用的程序路径";
myProcess.StartInfo.Arguments = "命令参数";
myProcess.StartInfo.CreateNoWindow = true;
myProcess.Start();