using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Diagnostics; namespace TestEqual { class Program { static void Main(string[] args) { Process myProcess = new Process(); myProcess.StartInfo.FileName = "iexplore.exe"; myProcess.StartInfo.Arguments = "http://www.baidu.com"; myProcess.Start(); }