Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ For< TLocal >() [2/4]

static ParallelLoopResult System.Threading.Tasks.Parallel.For< TLocal > ( int fromInclusive,
int toExclusive,
ParallelOptions parallelOptions,
Func< TLocal > localInit,
Func< int, ParallelLoopState, TLocal, TLocal > body,
Action< TLocal > localFinally )
inlinestatic

Definition at line 387 of file Parallel.cs.

388 {
389 if (body == null)
390 {
391 throw new ArgumentNullException("body");
392 }
393 if (localInit == null)
394 {
395 throw new ArgumentNullException("localInit");
396 }
397 if (localFinally == null)
398 {
399 throw new ArgumentNullException("localFinally");
400 }
401 if (parallelOptions == null)
402 {
403 throw new ArgumentNullException("parallelOptions");
404 }
406 }