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

◆ Zip< TFirst, TSecond, TResult >()

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

Definition at line 8588 of file Enumerable.cs.

8589 {
8590 if (first == null)
8591 {
8592 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.first);
8593 }
8594 if (second == null)
8595 {
8596 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.second);
8597 }
8598 if (resultSelector == null)
8599 {
8600 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.resultSelector);
8601 }
8603 }

References System.Linq.first, System.Linq.resultSelector, System.Linq.second, and System.Linq.ThrowHelper.ThrowArgumentNullException().