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.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- comparer
- Type: System.Collections.IEqualityComparer
An object that computes the hash code of the current object.
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 ImplementersIf the Equals method returns true for two objects, the values returned by the GetHashCode method for the two objects must also be equal.
Show: