摘要: 1 try 2 { 3 Process pp = Process.Start(processStartInfo); 4 string output = pp.StandardOutput.ReadToEnd(); 5 pp.WaitForExit(); 6 pp.Close(); 7 MessageBox.Show(output); 8 } 9 catch (E... 阅读全文
posted @ 2013-09-05 10:53 黄山红塔 阅读(934) 评论(0) 推荐(0) 编辑