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 )
inlinestatic

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 }

References System.source.