Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
ForEach< TSource >()
[12/12]
static
ParallelLoopResult
System.Threading.Tasks.Parallel.ForEach< TSource >
(
Partitioner
< TSource >
source
,
ParallelOptions
parallelOptions
,
Action
< TSource,
ParallelLoopState
>
body
)
inline
static
Definition at line
1114
of file
Parallel.cs
.
1115
{
1116
if
(
source
==
null
)
1117
{
1118
throw
new
ArgumentNullException(
"source"
);
1119
}
1120
if
(body ==
null
)
1121
{
1122
throw
new
ArgumentNullException(
"body"
);
1123
}
1124
if
(
parallelOptions
==
null
)
1125
{
1126
throw
new
ArgumentNullException(
"parallelOptions"
);
1127
}
1128
return
PartitionerForEachWorker<TSource, object>
(
source
,
parallelOptions
,
null
, body,
null
,
null
,
null
,
null
,
null
);
1129
}
System.Collections.Generic.Dictionary
Definition
Dictionary.cs:14
System.ExceptionArgument.source
@ source
References
System.source
.
System
Threading
Tasks
Parallel
Generated by
1.10.0