111,098
社区成员




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);
}