wangdetian168 发表于 2013-1-28 19:29:33

System.Diagnostics.Process.Start

System.Diagnostics.Process.Start(@"C:\Program Files\Internet Explorer\IEXPLORE.EXE",@"http://www.baidu.com");

System.Diagnostics.Process proc = new System.Diagnostics.Process();
proc.StartInfo.FileName= "notepad.exe";
proc.Start();
proc.WaitForExit();

翻译 一些很酷的.Net技巧
页: [1]
查看完整版本: System.Diagnostics.Process.Start