C#启动应用程序

 System.Diagnostics.Process p = new Process();
 p.StartInfo.UseShellExecute = true;
 p.StartInfo.FileName = @"D:\text.txt";
 p.Start();

 

posted @ 2013-06-27 13:12  lampon  阅读(1010)  评论(0编辑  收藏  举报