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

◆ For() [2/8]

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

Definition at line 309 of file Parallel.cs.

310 {
311 if (body == null)
312 {
313 throw new ArgumentNullException("body");
314 }
315 return ForWorker<object>(fromInclusive, toExclusive, s_defaultParallelOptions, null, body, null, null, null);
316 }
static readonly ParallelOptions s_defaultParallelOptions
Definition Parallel.cs:148

References System.Threading.Tasks.Parallel.s_defaultParallelOptions.