Click or drag to resize

HashCode.GetHashCode Method

Overload List
  NameDescription
Public methodStatic memberGetHashCode(Boolean)
Gets a hash code for a specified boolean. This overload simply calls GetHashCode() and is provided for convenience.
Public methodStatic memberGetHashCode(Double)
Gets a hash code for a specified double. This overload simply calls GetHashCode() and is provided for convenience.
Public methodStatic memberGetHashCode(Double[])
Gets a hash code for the items in the specified array. The hash code is computed by using Combine(Int32[]) to combine the hash codes of the items in the array. If the array is null, the returned hash code is zero.
Public methodStatic memberGetHashCode(Double[,])
Gets a hash code for the items in the specified two dimensional array. The hash code is computed by using Combine(Int32[]) to combine the hash codes of the items in the array. If the array is null, the returned hash code is zero.
Public methodStatic memberGetHashCode<T>(T[])
Gets a hash code for the items in the specified array. The hash code is computed by using Combine(Int32[]) to combine the hash codes of the items in the array. If the array is null, the returned hash code is zero.
Public methodStatic memberGetHashCode<T>(T[,])
Gets a hash code for the items in the specified two dimensional array. The hash code is computed by using Combine(Int32[]) to combine the hash codes of the items in the array. If the array is null, the returned hash code is zero.
Public methodStatic memberGetHashCode<T>(IEnumerable<T>)
Gets a hash code for the items in the specified sequence. The hash code is computed by using Combine(Int32[]) to combine the hash codes of the items in the sequence. If items is null, the returned hash code is zero.
Public methodStatic memberGetHashCode(Int32)
Gets a hash code for a specified int. This overload simply calls GetHashCode() and is provided for convenience.
Public methodStatic memberGetHashCode(Object)
Gets a hash code for a specified object, or zero if the object is null.
Public methodStatic memberGetHashCode(String)
Gets a hash code for a specified string, or zero if the string is null.
Public methodStatic memberGetHashCode<T>(T[], HashCode.GetHashCodeFunction<T>)
Gets a hash code for the items in the specified array. The hash code is computed by using Combine(Int32[]) to combine the hash codes of the items in the array. If the array is null, the returned hash code is zero.
Public methodStatic memberGetHashCode<T>(T[,], HashCode.GetHashCodeFunction<T>)
Gets a hash code for the items in the specified two dimensional array. The hash code is computed by using Combine(Int32[]) to combine the hash codes of the items in the array. If the array is null, the returned hash code is zero.
Public methodStatic memberGetHashCode<T>(IEnumerable<T>, HashCode.GetHashCodeFunction<T>)
Gets a hash code for the items in the specified sequence. The hash code is computed by using Combine(Int32[]) to combine the hash codes of the items in the sequence. If items is null, the returned hash code is zero.
Top
See Also