摘要: Process proc = new Process(); proc.StartInfo.CreateNoWindow = true; proc.StartInfo.FileName = exename; proc.StartInfo.Arguments = arg; proc.StartInfo.UseShellExecute = false; proc.StartInfo.RedirectStandardOutput = true; proc.Start()... 阅读全文
posted @ 2013-04-20 20:31 启明星工作室 阅读(641) 评论(0) 推荐(0) 编辑