Skip to main content
.NET Framework Class Library
IEquatableT Interface

Defines a generalized method that a value type or class implements to create a type-specific method for determining equality of instances.

Namespace:   System
Assembly:  mscorlib (in mscorlib.dll)
Syntax
Public Interface IEquatable(Of T)
public interface IEquatable<T>
generic<typename T>
public interface class IEquatable
type IEquatable<'T> =  interface end

Type Parameters

T

The type of objects to compare.

The IEquatableT type exposes the following members.

Methods
  NameDescription
Public method Supported by the XNA Framework Supported by Portable Class Library Supported in .NET for Windows Store apps EqualsIndicates whether the current object is equal to another object of the same type.
Top
Remarks

This interface is implemented by types whose values can be equated (for example, the numeric and string classes). A value type or class implements the Equals method to create a type-specific method suitable for determining equality of instances.

NoteNote

The IComparableT interface defines the CompareTo method, which determines the sort order of instances of the implementing type. The IEquatableT interface defines the Equals method, which determines the equality of instances of the implementing type.

The IEquatableT interface is used by generic collection objects such as DictionaryTKey, TValue, ListT, and LinkedListT when testing for equality in such methods as Contains, IndexOf, LastIndexOf, and Remove. It should be implemented for any object that might be stored in a generic collection.

Notes to Implementers

Replace the type parameter of the IEquatableT interface with the type that is implementing this interface.

If you implement IEquatableT, you should also override the base class implementations of ObjectEquals(Object) and GetHashCode so that their behavior is consistent with that of the IEquatableTEquals method. If you do override ObjectEquals(Object), your overridden implementation is also called in calls to the static Equals(System.Object, System.Object) method on your class. This ensures that all invocations of the Equals method return consistent results.

Examples

See the example for the IEquatableTEquals method.

Version Information

.NET Framework

Supported in: 4.5, 4, 3.5, 3.0, 2.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1

Portable Class Library

Supported in: Portable Class Library

.NET for Windows Store apps

Supported in: Windows 8
Platforms

Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.