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

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 }

References System.source.