using System.Diagnostics;
string program = @"C:\Program Files\Internet Explorer\IEXPLORE.EXE"; string argument = @"http://mobiquitous.com/";
Process extProcess = new Process(); extProcess.StartInfo.FileName = program; //起動するファイル名 extProcess.StartInfo.Arguments = argument; //起動時の引数
extProcess.Start(); //プロセス開始