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

◆ For() [6/8]

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

Definition at line 318 of file Parallel.cs.

319 {
320 if (body == null)
321 {
322 throw new ArgumentNullException("body");
323 }
324 return ForWorker64<object>(fromInclusive, toExclusive, s_defaultParallelOptions, null, body, null, null, null);
325 }
static readonly ParallelOptions s_defaultParallelOptions
Definition Parallel.cs:148

References System.Threading.Tasks.Parallel.s_defaultParallelOptions.