Parallel stepped for loops in .NET C# z

时间:2014-05-22 16:08:30   收藏:0   阅读:281
bubuko.com,布布扣
for (int i = 0; i < 20; i += 2)


public IEnumerable<int> SteppedIntegerList(int startIndex,
            int endEndex, int stepSize)
{
        for (int i = startIndex; i < endEndex; i += stepSize)
    {
        yield return i;
    }
}


Parallel.ForEach(SteppedIntegerList(0, 20, 2), index =>
{

    Console.WriteLine("Index value: {0}", index);
});
bubuko.com,布布扣

 

Parallel stepped for loops in .NET C# z,布布扣,bubuko.com

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!