标签: c# lambda parallel.foreach
我有一个使用Parallel foreach循环的集合。在将其传递给循环之前,我想检查集合中的每个单项。我试图做这样的事情,但它给出了一个错误。 有什么想法或建议吗?
Parallel.ForEach(testCollection, (perform a check on each item in the collection) => DoSomething with the checked item)
答案 0 :(得分:-1)
我知道你想先过滤数据(使用Where) http://www.dotnetperls.com/where