Overload | Description |
---|---|
Distinct<T,TKey>(IEnumerable<T>,Func<T,TKey>) | Returns distinct elements from a sequence seq by using the default equality comparer of the type TKey, on which items are projected through funcProjection. |
Distinct<T,TKey>(IEnumerable<T>,Func<T,TKey>,IEqualityComparer<TKey>) | Returns distinct elements from a sequence seq by using the default equality comparer of the type TKey, on which items are projected through funcProjection. |