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

◆ For() [8/8]

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

Definition at line 340 of file Parallel.cs.

341 {
342 if (body == null)
343 {
344 throw new ArgumentNullException("body");
345 }
346 if (parallelOptions == null)
347 {
348 throw new ArgumentNullException("parallelOptions");
349 }
350 return ForWorker64<object>(fromInclusive, toExclusive, parallelOptions, null, body, null, null, null);
351 }