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

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

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

Definition at line 353 of file Parallel.cs.

354 {
355 if (body == null)
356 {
357 throw new ArgumentNullException("body");
358 }
359 if (localInit == null)
360 {
361 throw new ArgumentNullException("localInit");
362 }
363 if (localFinally == null)
364 {
365 throw new ArgumentNullException("localFinally");
366 }
368 }
static readonly ParallelOptions s_defaultParallelOptions
Definition Parallel.cs:148

References System.Threading.Tasks.Parallel.s_defaultParallelOptions.