摘要: 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);//传递参数 } 阅读全文
posted @ 2011-10-08 10:15 星月磊子 阅读(310) 评论(0) 推荐(0) 编辑