EqualityComparer<T>.Create Method

Definition

Overloads

Name Description
Create(Func<T,T,Boolean>, Func<T,Int32>)

Creates an EqualityComparer<T> by using the specified delegates as the implementation of the comparer's Equals(T, T) and GetHashCode(T) methods.

Create<TKey>(Func<T,TKey>, IEqualityComparer<TKey>)

Create(Func<T,T,Boolean>, Func<T,Int32>)

Source:
EqualityComparer.cs
Source:
EqualityComparer.cs
Source:
EqualityComparer.cs
Source:
EqualityComparer.cs

Creates an EqualityComparer<T> by using the specified delegates as the implementation of the comparer's Equals(T, T) and GetHashCode(T) methods.

public static System.Collections.Generic.EqualityComparer<T> Create(Func<T?,T?,bool> equals, Func<T,int>? getHashCode = default);
static member Create : Func<'T, 'T, bool> * Func<'T, int> -> System.Collections.Generic.EqualityComparer<'T>
Public Shared Function Create (equals As Func(Of T, T, Boolean), Optional getHashCode As Func(Of T, Integer) = Nothing) As EqualityComparer(Of T)

Parameters

equals
Func<T,T,Boolean>

The delegate to use to implement the Equals(T, T) method.

getHashCode
Func<T,Int32>

The delegate to use to implement the GetHashCode(T) method. If no delegate is supplied, calls to the resulting comparer's GetHashCode(T) will throw NotSupportedException.

Returns

The new comparer.

Exceptions

The equals delegate was null.

Applies to

Create<TKey>(Func<T,TKey>, IEqualityComparer<TKey>)

Source:
EqualityComparer.cs
public static System.Collections.Generic.EqualityComparer<T> Create<TKey>(Func<T?,TKey?> keySelector, System.Collections.Generic.IEqualityComparer<TKey>? keyComparer = default);
static member Create : Func<'T, 'Key> * System.Collections.Generic.IEqualityComparer<'Key> -> System.Collections.Generic.EqualityComparer<'T>
Public Shared Function Create(Of TKey) (keySelector As Func(Of T, TKey), Optional keyComparer As IEqualityComparer(Of TKey) = Nothing) As EqualityComparer(Of T)

Type Parameters

TKey

Parameters

keySelector
Func<T,TKey>
keyComparer
IEqualityComparer<TKey>

Returns

Applies to