我想增加一個特定值的索引,例如2:如何在Parallel.For中增加一個特定值的索引?
for (int i = 0; i < 10; i+=2)
{
Console.WriteLine(i);
}
我該怎麼辦使用Parallel
類,喜歡同樣的:
Parallel.For(0, 10, i =>
{
Console.WriteLine(i);
i += 2; //this a naïve assumption, it's not working
});
編輯
我想Parallel
循環只運行5個操作(作爲順序)和順序對我來說並不重要。
在這種情況下,增量也被稱爲*步幅*。 – user7116
[Parallel.For step size]的可能重複(http://stackoverflow.com/questions/7142446/parallel-for-step-size) – user7116