Note
Access to this page requires authorization. You can try signing in or .
Access to this page requires authorization. You can try .
IEqualityComparer Interface
Definition
- Namespace:
- System.Collections
- Assemblies:
- mscorlib.dll, System.Runtime.dll
- Assemblies:
- netstandard.dll, System.Runtime.dll
- Assembly:
- System.Runtime.dll
- Assembly:
- mscorlib.dll
- Assembly:
- netstandard.dll
- Source:
- IEqualityComparer.cs
- Source:
- IEqualityComparer.cs
- Source:
- UnverifiableCodeAttribute.cs
Important
Some information relates to prerelease product that may be substantially modified before itβs released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Defines methods to support the comparison of objects for equality.
public interface class IEqualityComparer
public interface IEqualityComparer
[System.Runtime.InteropServices.ComVisible(true)]
public interface IEqualityComparer
type IEqualityComparer = interface
[<System.Runtime.InteropServices.ComVisible(true)>]
type IEqualityComparer = interface
Public Interface IEqualityComparer
- Derived
- Attributes
Remarks
This interface allows the implementation of customized equality comparison for collections. That is, you can create your own definition of equality, and specify that this definition be used with a collection type that accepts the IEqualityComparer interface. In the .NET Framework, constructors of the Hashtable, NameValueCollection, and OrderedDictionary collection types accept this interface.
For the generic version of this interface, see System.Collections.Generic.IEqualityComparer<T>.
The IEqualityComparer interface supports only equality comparisons. Customization of comparisons for sorting and ordering is provided by the IComparer interface.
Methods
| Name | Description |
|---|---|
| Equals(Object, Object) |
Determines whether the specified objects are equal. |
| GetHashCode(Object) |
Returns a hash code for the specified object. |
Applies to
See also
Feedback
Was this page helpful?
