有时我们需要在C#程序中启动外部的程序,这如何实现呢?我们可以借助System.Diagnostics.Process提供的Start方法来实现,下面用3个例子来说明:
(1)程序中打开网页
System.Diagnostics.Process.Start("iexplore.exe",“http://www.VeVb.com”);
System.Diagnostics.Process.Start();
(2)程序中打开记事本
System.Diagnostics.Process.Start("notepad.exe")
(3)程序中打开计算器
System.Diagnostics.Process.Start("calc.exe")
新闻热点
疑难解答
图片精选