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

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

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

Definition at line 408 of file Parallel.cs.

409 {
410 if (body == null)
411 {
412 throw new ArgumentNullException("body");
413 }
414 if (localInit == null)
415 {
416 throw new ArgumentNullException("localInit");
417 }
418 if (localFinally == null)
419 {
420 throw new ArgumentNullException("localFinally");
421 }
422 if (parallelOptions == null)
423 {
424 throw new ArgumentNullException("parallelOptions");
425 }
427 }