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

◆ For() [4/8]

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

Definition at line 327 of file Parallel.cs.

328 {
329 if (body == null)
330 {
331 throw new ArgumentNullException("body");
332 }
333 if (parallelOptions == null)
334 {
335 throw new ArgumentNullException("parallelOptions");
336 }
337 return ForWorker<object>(fromInclusive, toExclusive, parallelOptions, null, body, null, null, null);
338 }