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

◆ For() [5/8]

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

Definition at line 274 of file Parallel.cs.

275 {
276 if (body == null)
277 {
278 throw new ArgumentNullException("body");
279 }
280 return ForWorker64<object>(fromInclusive, toExclusive, s_defaultParallelOptions, body, null, null, null, null);
281 }
static readonly ParallelOptions s_defaultParallelOptions
Definition Parallel.cs:148

References System.Threading.Tasks.Parallel.s_defaultParallelOptions.