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

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

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

Definition at line 370 of file Parallel.cs.

371 {
372 if (body == null)
373 {
374 throw new ArgumentNullException("body");
375 }
376 if (localInit == null)
377 {
378 throw new ArgumentNullException("localInit");
379 }
380 if (localFinally == null)
381 {
382 throw new ArgumentNullException("localFinally");
383 }
385 }
static readonly ParallelOptions s_defaultParallelOptions
Definition Parallel.cs:148

References System.Threading.Tasks.Parallel.s_defaultParallelOptions.