Parallel.For Method (Int32, Int32, Action<Int32>)
Executes a for (For in Visual Basic) loop in which iterations may run in parallel.
Assembly: mscorlib (in mscorlib.dll)
public static ParallelLoopResult For( int fromInclusive, int toExclusive, Action<int> body )
Parameters
- fromInclusive
- Type: System.Int32
The start index, inclusive.
- toExclusive
- Type: System.Int32
The end index, exclusive.
- body
- Type: System.Action<Int32>
The delegate that is invoked once per iteration.
Return Value
Type: System.Threading.Tasks.ParallelLoopResultA structure that contains information about which portion of the loop completed.
| Exception | Condition |
|---|---|
| ArgumentNullException | The body argument is null. |
| AggregateException | The exception that contains all the individual exceptions thrown on all threads. |
The body delegate is invoked once for each value in the iteration range (fromInclusive, toExclusive). It is provided with the iteration count (Int32) as a parameter.
If fromInclusive is greater than or equal to toExclusive, the method returns immediately without performing any iterations.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.