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

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

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

Definition at line 5066 of file Enumerable.cs.

5067 {
5068 if (first == null)
5069 {
5070 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.first);
5071 }
5072 if (second == null)
5073 {
5074 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.second);
5075 }
5076 if (keySelector == null)
5077 {
5078 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.keySelector);
5079 }
5081 }

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