CaseInsensitiveHashCodeProvider.GetHashCode Method (Object)
.NET Framework (current version)
Returns a hash code for the given object, using a hashing algorithm that ignores the case of strings.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- obj
-
Type:
System.Object
The Object for which a hash code is to be returned.
Return Value
Type: System.Int32A hash code for the given object, using a hashing algorithm that ignores the case of strings.
Implements
IHashCodeProvider.GetHashCode(Object)| Exception | Condition |
|---|---|
| ArgumentNullException | obj is null. |
The return value from this method must not be persisted for two reasons. First, the hash function of a class might be altered to generate a better distribution, thereby rendering any values from the old hash function useless. Second, the default implementation of this class does not guarantee that the same value will be returned by different instances.
.NET Framework
Available since 1.1
Available since 1.1
Show: