Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
For()
[3/8]
static
ParallelLoopResult
System.Threading.Tasks.Parallel.For
(
int
fromInclusive
,
int
toExclusive
,
ParallelOptions
parallelOptions
,
Action
< int >
body
)
inline
static
Definition at line
283
of file
Parallel.cs
.
284
{
285
if
(body ==
null
)
286
{
287
throw
new
ArgumentNullException(
"body"
);
288
}
289
if
(
parallelOptions
==
null
)
290
{
291
throw
new
ArgumentNullException(
"parallelOptions"
);
292
}
293
return
ForWorker<object>
(
fromInclusive
,
toExclusive
,
parallelOptions
, body,
null
,
null
,
null
,
null
);
294
}
System.Collections.Generic.Dictionary
Definition
Dictionary.cs:14
System
Threading
Tasks
Parallel
Generated by
1.10.0