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

◆ Zip< TFirst, TSecond, TThird >()

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

Definition at line 8618 of file Enumerable.cs.

8619 {
8620 if (first == null)
8621 {
8622 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.first);
8623 }
8624 if (second == null)
8625 {
8626 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.second);
8627 }
8628 if (third == null)
8629 {
8630 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.third);
8631 }
8632 return ZipIterator(first, second, third);
8633 }

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