摘要:
using System.IO;using System.Diagnostics;ProcessStartInfo pro = new System.Diagnostics.ProcessStartInfo("cmd.exe");pro.UseShellExecute = false;pro.RedirectStandardOutput = true;pro.RedirectStandardError = true;pro.CreateNoWindow = true;pro.Arguments = "/K " + System.Environment.C 阅读全文
posted @ 2012-10-27 22:53
WHISHT
阅读(941)
评论(0)
推荐(0)