摘要:
string[] urlcp = GetPage(curl); Thread[] mythread = new Thread[urlcp.Length]; for (int i = 0; i < urlcp.Length; i++) { //getcontent(curl); getcontent(urlcp[i]); object[] urcp1 = (object[])urlcp; mythread[i] = new Thread(new ParameterizedThreadStart(getcontent1)); mythread[i].Start(urcp1);//传递参数 } 阅读全文