GetHashCode()

Namespace ›› System ›› MfEqualityComparerBase ›› Methods ››
Parent Previous Next

GetHashCode()

Overrides MfObject.GetHasCode()

instance.GetHashCode()

GetHashCode(obj)

Returns a hash code for the specified MfObject.

Parameters

obj

The MfObject for which a hash code is to be returned.

Returns

Returns A hash code for the current MfObject.

Throws

Throws MfNotImplementedException if not overridden in derived class.

Remarks

Implement this method to provide customized hash codes for objects, corresponding to the customized equality comparison provided by the Equals method.

Notes to Implementers
Implementations are required to ensure that if the Equals method returns true for two objects x and y, then the value returned by the GetHashCode method for x must equal the value returned for y.