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

◆ Zip< TFirst, TSecond >()

static IEnumerable<(TFirst First, TSecond Second)> System.Linq.Enumerable.Zip< TFirst, TSecond > ( this IEnumerable< TFirst > first,
IEnumerable< TSecond > second )
inlinestatic

Definition at line 8605 of file Enumerable.cs.

8606 {
8607 if (first == null)
8608 {
8609 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.first);
8610 }
8611 if (second == null)
8612 {
8613 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.second);
8614 }
8615 return ZipIterator(first, second);
8616 }

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