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

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

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

Definition at line 1034 of file Parallel.cs.

1035 {
1036 if (source == null)
1037 {
1038 throw new ArgumentNullException("source");
1039 }
1040 if (body == null)
1041 {
1042 throw new ArgumentNullException("body");
1043 }
1044 if (!source.KeysNormalized)
1045 {
1047 }
1048 return PartitionerForEachWorker<TSource, object>(source, s_defaultParallelOptions, null, null, body, null, null, null, null);
1049 }
static string Parallel_ForEach_OrderedPartitionerKeysNotNormalized
Definition SR.cs:16
Definition SR.cs:7
static readonly ParallelOptions s_defaultParallelOptions
Definition Parallel.cs:148

References System.SR.Parallel_ForEach_OrderedPartitionerKeysNotNormalized, System.Threading.Tasks.Parallel.s_defaultParallelOptions, and System.source.