Parallel::For Method
Executes a for (For in Visual Basic) loop in which iterations may run in parallel.
Assembly: mscorlib (in mscorlib.dll)
| Name | Description | |
|---|---|---|
![]() ![]() | For(Int32, Int32, Action<Int32, ParallelLoopState^>^) | Executes a for (For in Visual Basic) loop in which iterations may run in parallel and the state of the loop can be monitored and manipulated. |
![]() ![]() | For(Int32, Int32, Action<Int32>^) | Executes a for (For in Visual Basic) loop in which iterations may run in parallel. |
![]() ![]() | For(Int32, Int32, ParallelOptions^, Action<Int32, ParallelLoopState^>^) | Executes a for (For in Visual Basic) loop in which iterations may run in parallel, loop options can be configured, and the state of the loop can be monitored and manipulated. |
![]() ![]() | For(Int32, Int32, ParallelOptions^, Action<Int32>^) | Executes a for (For in Visual Basic) loop in which iterations may run in parallel and loop options can be configured. |
![]() ![]() | For(Int64, Int64, Action<Int64, ParallelLoopState^>^) | Executes a for (For in Visual Basic) loop with 64-bit indexes in which iterations may run in parallel and the state of the loop can be monitored and manipulated. |
![]() ![]() | For(Int64, Int64, Action<Int64>^) | Executes a for (For in Visual Basic) loop with 64-bit indexes in which iterations may run in parallel. |
![]() ![]() | For(Int64, Int64, ParallelOptions^, Action<Int64, ParallelLoopState^>^) | 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. |
![]() ![]() | For(Int64, Int64, ParallelOptions^, Action<Int64>^) | Executes a for (For in Visual Basic) loop with 64-bit indexes in which iterations may run in parallel and loop options can be configured. |
![]() ![]() | For<TLocal>(Int32, Int32, Func<TLocal>^, Func<Int32, ParallelLoopState^, TLocal, TLocal>^, Action<TLocal>^) | Executes a for (For in Visual Basic) loop with thread-local data in which iterations may run in parallel, and the state of the loop can be monitored and manipulated. |
![]() ![]() | For<TLocal>(Int32, Int32, ParallelOptions^, Func<TLocal>^, Func<Int32, ParallelLoopState^, TLocal, TLocal>^, Action<TLocal>^) | Executes a for (For in Visual Basic) loop with thread-local data in which iterations may run in parallel, loop options can be configured, and the state of the loop can be monitored and manipulated. |
![]() ![]() | For<TLocal>(Int64, Int64, Func<TLocal>^, Func<Int64, ParallelLoopState^, TLocal, TLocal>^, Action<TLocal>^) | Executes a for (For in Visual Basic) loop with 64-bit indexes and thread-local data in which iterations may run in parallel, and the state of the loop can be monitored and manipulated. |
![]() ![]() | For<TLocal>(Int64, Int64, ParallelOptions^, Func<TLocal>^, Func<Int64, ParallelLoopState^, TLocal, TLocal>^, Action<TLocal>^) | Executes a for (For in Visual Basic) loop with 64-bit indexes and thread-local data in which iterations may run in parallel, loop options can be configured, and the state of the loop can be monitored and manipulated. |

