Let the storm money come!

控制台程序,不出窗口,直接运行在后台

代码
                        Process p = new Process();
                        p.StartInfo.FileName 
= files[i];
                        p.StartInfo.UseShellExecute 
= false;
                        p.StartInfo.CreateNoWindow 
= true;
                        p.Start();

 

posted @ 2010-03-26 17:40  精密~顽石  阅读(605)  评论(0编辑  收藏  举报
在通往地狱的路上,加班能使你更快到达。