GetHashCode Method
Collapse the table of content
Expand the table of content

IStructuralEquatable.GetHashCode Method

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Returns a hash code for the current instance.

Namespace:  System.Collections
Assembly:  mscorlib (in mscorlib.dll)

int GetHashCode(
	IEqualityComparer comparer
)

Parameters

comparer
Type: System.Collections.IEqualityComparer
An object that computes the hash code of the current object.

Return Value

Type: System.Int32
The hash code for the current instance.

Implement this method to return customized hash codes for collection objects that correspond to the customized comparison for structural equality provided by the Equals method.

Notes to Implementers

If the Equals method returns true for two objects, the values returned by the GetHashCode method for the two objects must also be equal.

Windows Phone OS

Supported in: 8.1, 8.0

Show:
© 2017 Microsoft