下面來看一個具體實例:
1
2 using System;
3 using System.Diagnostics;
4
5 namespace csharp_station.howto
6 {
7 /**//**//**//// <summary>
8 /// 在C#中啟動IE進程
9 /// </summary>
10 class ProcessStart
11 {
12 static void Main(string[] args)
13 {
14 Process IE = new Process();
15
16 //指定啟動程序的名稱
17 ie.StartInfo.FileName = "IExplore.exe";
18 IE.StartInfo.Arguments = "www.bianceng.cn";
19
20 IE.Start();
21 }
22 }
23}