111,119
社区成员
发帖
与我相关
我的任务
分享
private void button1_Click(object sender, EventArgs e)
{
string str = @"C:\Program Files\Internet Explorer\iexplore.exe";
ProcessStartInfo info = new ProcessStartInfo(str);
info.Arguments = "www.baidu.com";
Process.Start(info);
info.Arguments = "www.google.com";
Process.Start(info);
}