HashCode.GetHashCode Method (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.
Namespace:
AGI.Foundation.Infrastructure
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.3.420.0 (24.3.420.0)
Syntaxpublic static int GetHashCode(
double[,] array
)
Public Shared Function GetHashCode (
array As Double(,)
) As Integer
public:
static int GetHashCode(
array<double,2>^ array
)
static member GetHashCode :
array : float[,] -> int
Parameters
- array
- Type:System.Double[,]
The two dimensional array for which to get the hash code.
Return Value
Type:
Int32The hash code.
See Also