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

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

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

Definition at line 1097 of file Parallel.cs.

1098 {
1099 if (source == null)
1100 {
1101 throw new ArgumentNullException("source");
1102 }
1103 if (body == null)
1104 {
1105 throw new ArgumentNullException("body");
1106 }
1107 if (parallelOptions == null)
1108 {
1109 throw new ArgumentNullException("parallelOptions");
1110 }
1111 return PartitionerForEachWorker<TSource, object>(source, parallelOptions, body, null, null, null, null, null, null);
1112 }

References System.source.