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

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

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

Definition at line 4770 of file Enumerable.cs.

4771 {
4772 if (first == null)
4773 {
4774 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.first);
4775 }
4776 if (second == null)
4777 {
4778 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.second);
4779 }
4781 }

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