Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
ForEach< TSource >()
[4/12]
static
ParallelLoopResult
System.Threading.Tasks.Parallel.ForEach< TSource >
(
IEnumerable
< TSource >
source
,
ParallelOptions
parallelOptions
,
Action
< TSource >
body
)
inline
static
Definition at line
763
of file
Parallel.cs
.
764
{
765
if
(
source
==
null
)
766
{
767
throw
new
ArgumentNullException(
"source"
);
768
}
769
if
(body ==
null
)
770
{
771
throw
new
ArgumentNullException(
"body"
);
772
}
773
if
(
parallelOptions
==
null
)
774
{
775
throw
new
ArgumentNullException(
"parallelOptions"
);
776
}
777
return
ForEachWorker<TSource, object>
(
source
,
parallelOptions
, body,
null
,
null
,
null
,
null
,
null
,
null
);
778
}
System.Collections.Generic.Dictionary
Definition
Dictionary.cs:14
System.ExceptionArgument.source
@ source
References
System.source
.
System
Threading
Tasks
Parallel
Generated by
1.10.0