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

◆ Zip< TFirst, TSecond, TResult >() [2/2]

static ParallelQuery< TResult > System.Linq.ParallelEnumerable.Zip< TFirst, TSecond, TResult > ( this ParallelQuery< TFirst > first,
ParallelQuery< TSecond > second,
Func< TFirst, TSecond, TResult > resultSelector )
inlinestatic

Definition at line 237 of file ParallelEnumerable.cs.

238 {
239 if (first == null)
240 {
241 throw new ArgumentNullException("first");
242 }
243 if (second == null)
244 {
245 throw new ArgumentNullException("second");
246 }
247 if (resultSelector == null)
248 {
249 throw new ArgumentNullException("resultSelector");
250 }
252 }

References System.Linq.first, System.Linq.resultSelector, and System.Linq.second.