HashCode Methods |
Name | Description | |
---|---|---|
![]() ![]() | Combine(Int32[]) |
Combines an arbitrary number of hash codes.
|
![]() ![]() | Combine(Int32, Int32) |
Combines two hash codes.
|
![]() ![]() | Combine(Int32, Int32, Int32) |
Combines three hash codes.
|
![]() ![]() | Combine(Int32, Int32, Int32, Int32) |
Combines four hash codes.
|
![]() ![]() | Combine(Int32, Int32, Int32, Int32, Int32) |
Combines five hash codes.
|
![]() ![]() | GetHashCode(Boolean) |
Gets a hash code for a specified boolean. This overload simply calls GetHashCode() and is provided for convenience.
|
![]() ![]() | GetHashCode(Double) |
Gets a hash code for a specified double. This overload simply calls GetHashCode() and is provided for convenience.
|
![]() ![]() | GetHashCode(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.
|
![]() ![]() | GetHashCode(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.
|
![]() ![]() | GetHashCode(Int32) |
Gets a hash code for a specified int. This overload simply calls GetHashCode() and is provided for convenience.
|
![]() ![]() | GetHashCode(Object) |
Gets a hash code for a specified object, or zero if the object is null.
|
![]() ![]() | GetHashCode(String) |
Gets a hash code for a specified string, or zero if the string is null.
|
![]() ![]() | GetHashCode<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.
|
![]() ![]() | GetHashCode<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.
|
![]() ![]() | GetHashCode<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.
|
![]() ![]() | GetHashCode<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.
|
![]() ![]() | GetHashCode<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.
|
![]() ![]() | GetHashCode<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.
|