Executes a for (For in Visual Basic) loop with 64-bit indexes in which iterations may run in parallel, loop options can be configured, and the state of the loop can be monitored and manipulated.
A structure that contains information about which portion of the loop completed.
The body delegate is invoked once for each value in the iteration range (fromInclusive, toExclusive). It is provided with the following parameters: the iteration count (long), and a System.Threading.Tasks.ParallelLoopState instance that may be used to break out of the loop prematurely.
If fromInclusive is greater than or equal to toExclusive, the method returns immediately without performing any iterations.