EqualityComparer<T>.IEqualityComparer.GetHashCode(Object) 方法

定义

返回指定对象的哈希代码。

 virtual int System.Collections.IEqualityComparer.GetHashCode(System::Object ^ obj) = System::Collections::IEqualityComparer::GetHashCode;
int IEqualityComparer.GetHashCode (object obj);
abstract member System.Collections.IEqualityComparer.GetHashCode : obj -> int
override this.System.Collections.IEqualityComparer.GetHashCode : obj -> int
Function GetHashCode (obj As Object) As Integer Implements IEqualityComparer.GetHashCode

参数

obj
Object

Object,将为其返回哈希代码。

返回

指定对象的哈希代码。

实现

例外

obj 的类型为引用类型,objnull

- 或 -

obj 所属的类型无法被强制转换为类型 T

注解

此方法是 方法的 GetHashCode(T) 包装器,因此 obj 必须是可强制转换为由当前实例的泛型类型参数 T 指定的类型的类型。

适用于