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

◆ Except< TSource >() [1/2]

static IEnumerable< TSource > System.Linq.Enumerable.Except< TSource > ( this IEnumerable< TSource > first,
IEnumerable< TSource > second )
inlinestatic

Definition at line 4757 of file Enumerable.cs.

4758 {
4759 if (first == null)
4760 {
4761 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.first);
4762 }
4763 if (second == null)
4764 {
4765 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.second);
4766 }
4767 return ExceptIterator(first, second, null);
4768 }

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