摘要: 在.Net中,创建一个进程十分容易。但是如果你想创建一个没有窗口的后台进程,你需要对ProcessStartInfo进行一些特殊的设置:var process = new Process() { StartInfo = new ProcessStartInfo("executable file name", "arguments") { CreateNoWindow = true, UseShel... 阅读全文
posted @ 2010-01-28 16:40 夜深沉 阅读(535) 评论(0) 推荐(0)