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

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

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

Definition at line 793 of file Parallel.cs.

794 {
795 if (source == null)
796 {
797 throw new ArgumentNullException("source");
798 }
799 if (body == null)
800 {
801 throw new ArgumentNullException("body");
802 }
803 if (parallelOptions == null)
804 {
805 throw new ArgumentNullException("parallelOptions");
806 }
807 return ForEachWorker<TSource, object>(source, parallelOptions, null, body, null, null, null, null, null);
808 }

References System.source.