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

◆ For() [7/8]

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

Definition at line 296 of file Parallel.cs.

297 {
298 if (body == null)
299 {
300 throw new ArgumentNullException("body");
301 }
302 if (parallelOptions == null)
303 {
304 throw new ArgumentNullException("parallelOptions");
305 }
306 return ForWorker64<object>(fromInclusive, toExclusive, parallelOptions, body, null, null, null, null);
307 }