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

◆ ExceptBy< TSource, TKey >() [2/2]

static IEnumerable< TSource > System.Linq.Enumerable.ExceptBy< TSource, TKey > ( this IEnumerable< TSource > first,
IEnumerable< TKey > second,
Func< TSource, TKey > keySelector,
IEqualityComparer< TKey >? comparer )
inlinestatic

Definition at line 4788 of file Enumerable.cs.

4789 {
4790 if (first == null)
4791 {
4792 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.first);
4793 }
4794 if (second == null)
4795 {
4796 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.second);
4797 }
4798 if (keySelector == null)
4799 {
4800 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.keySelector);
4801 }
4803 }

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