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
)
inline
static
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
}
System.Collections.Generic.Dictionary
Definition
Dictionary.cs:14
System
Threading
Tasks
Parallel
Generated by
1.10.0