List<string> tList = new List<string>();tList.add("a");tList.add("b");tList.add("c");tList.add("d");//------------------------var q = from s in tList select s; var qa = from s in tList.AsParallel() select s;//------------------------并行 Parall... Read More
posted @ 2013-06-08 14:45 咸鱼公子 Views(172) Comments(0) Diggs(0) Edit