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

◆ For() [1/8]

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

Definition at line 265 of file Parallel.cs.

266 {
267 if (body == null)
268 {
269 throw new ArgumentNullException("body");
270 }
271 return ForWorker<object>(fromInclusive, toExclusive, s_defaultParallelOptions, body, null, null, null, null);
272 }
static readonly ParallelOptions s_defaultParallelOptions
Definition Parallel.cs:148

References System.Threading.Tasks.Parallel.s_defaultParallelOptions.