mscorlib(4.0.0.0) API with additions
IHashCodeProvider.cs
2 
3 namespace System.Collections
4 {
6  [Obsolete("Please use IEqualityComparer instead.")]
7  [ComVisible(true)]
8  public interface IHashCodeProvider
9  {
14  int GetHashCode(object obj);
15  }
16 }
Supplies a hash code for an object, using a custom hash function.
Definition: __Canon.cs:3
int GetHashCode(object obj)
Returns a hash code for the specified object.