Diff<>(old, new, comparer, predicate, postProcessor) NewArray<>(size1, size2, size3, initialiser) RunMain(main, onUnhandledMain, onUnhandledThread) RunMain(main, onUnhandledMain, onUnhandledThread)
Legend Class Struct Enum Interface Delegate | Constructor Method Property Event Field |
| Static method: void Parallel(int, params Action<int>[])Declarationpublic static void Parallel(
int maxSimultaneous,
params Action<int>[] actions
) Summary
Runs the specified actions partly in parallel by using no more than the specified maximum number of threads. Parametersint | maxSimultaneous |
Maximum number of concurrent threads allowed. | Action<int>[] | actions |
Actions to run. The parameter is the index of the thread running it. |
|