Jul 27, 2008
0
0
Custom Loop with Arbitrary Initialization, Condition, and Update
The Parallel.For loop construct provided by Parallel Extensions is focused on providing a parallel alternative to the common sequential pattern of a for loop that iterates over a range of numbers. However, the for loop construct in a language like C# is not limited just to numbers and iterating over ranges. It supports arbitrary initial...