Click or drag to resize

ExceptByExtension Class

ExceptBy extension.
Inheritance Hierarchy
System.Object
  MoreLinq.Extensions.ExceptByExtension

Namespace:  MoreLinq.Extensions
Assembly:  MoreLinq (in MoreLinq.dll) Version: 3.3.1+b77df70598ab84c28cd43dcf74594024b6d575e1
Syntax
public static class ExceptByExtension
Methods
  NameDescription
Public methodStatic memberExceptBy<TSource, TKey>(IEnumerable<TSource>, IEnumerable<TSource>, Func<TSource, TKey>)
Returns the set of elements in the first sequence which aren't in the second sequence, according to a given key selector.
Public methodStatic memberExceptBy<TSource, TKey>(IEnumerable<TSource>, IEnumerable<TSource>, Func<TSource, TKey>, IEqualityComparer<TKey>)
Returns the set of elements in the first sequence which aren't in the second sequence, according to a given key selector.
Top
See Also