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

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

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

Definition at line 823 of file Parallel.cs.

824 {
825 if (source == null)
826 {
827 throw new ArgumentNullException("source");
828 }
829 if (body == null)
830 {
831 throw new ArgumentNullException("body");
832 }
833 if (parallelOptions == null)
834 {
835 throw new ArgumentNullException("parallelOptions");
836 }
837 return ForEachWorker<TSource, object>(source, parallelOptions, null, null, body, null, null, null, null);
838 }

References System.source.