Determine if the specified Type overrides the implementation of GetHashCode from Object

Namespace:  NHibernate.Util
Assembly:  NHibernate (in NHibernate.dll)

Syntax

Visual Basic (Declaration)
Public Shared Function OverridesGetHashCode ( _
	clazz As Type _
) As Boolean
C#
public static bool OverridesGetHashCode(
	Type clazz
)
Visual C++
public:
static bool OverridesGetHashCode(
	Type^ clazz
)
JavaScript
NHibernate.Util.ReflectHelper.overridesGetHashCode = function(clazz);

Parameters

clazz
Type: System..::.Type
The Type to reflect.

Return Value

trueTruetruetrue (True in Visual Basic) if any type in the hierarchy overrides GetHashCode().

See Also