我System.Threading.Tasks.Parallel.For
用来做一些重量级的处理。
我的代码是:
int count = 10;
List<MyObj> results = new List<MyObj>();
Parallel.For(0, count, (index) =>
{
MyObj obj = GetMyObjMaybe();
if (obj != null)
results.Add(obj);
});
if (results.Contains(null))
{
//break here, and it does
}
//sometimes contains null objects
return results;
}
我不希望在列表中得到空值,但我是。我一定是搞砸了index
不知何故的使用。有任何想法吗?