111,126
社区成员
发帖
与我相关
我的任务
分享System.Diagnostics.Process.Start("www.csdn.net");public static void abc(string suf)
{
System.Diagnostics.Process.Start("iexplore "+suf);
}
abc("www.csdn.net");
abc("www.google.net");string[] urls = { "www.google.com", "www.csdn.net" };
urls.ToList().ForEach(x => System.Diagnostics.Process.Start("iexplore " + x));