摘要:
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()... 阅读全文