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

◆ ForEach< TSource >() [8/12]

static ParallelLoopResult System.Threading.Tasks.Parallel.ForEach< TSource > ( OrderablePartitioner< TSource > source,
ParallelOptions parallelOptions,
Action< TSource, ParallelLoopState, long > body )
inlinestatic

Definition at line 1131 of file Parallel.cs.

1132 {
1133 if (source == null)
1134 {
1135 throw new ArgumentNullException("source");
1136 }
1137 if (body == null)
1138 {
1139 throw new ArgumentNullException("body");
1140 }
1141 if (parallelOptions == null)
1142 {
1143 throw new ArgumentNullException("parallelOptions");
1144 }
1145 if (!source.KeysNormalized)
1146 {
1148 }
1149 return PartitionerForEachWorker<TSource, object>(source, parallelOptions, null, null, body, null, null, null, null);
1150 }
static string Parallel_ForEach_OrderedPartitionerKeysNotNormalized
Definition SR.cs:16
Definition SR.cs:7

References System.SR.Parallel_ForEach_OrderedPartitionerKeysNotNormalized, and System.source.