DefinitionalObject.GetCollectionHashCode Method (Double[]) |
Computes a hash code from the items in an array.
The hash code computed is order dependent, that is, another array
with the same items in a different order will have a different hash code.
Namespace:
AGI.Foundation.Infrastructure
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic static int GetCollectionHashCode(
double[] array
)
Public Shared Function GetCollectionHashCode (
array As Double()
) As Integer
public:
static int GetCollectionHashCode(
array<double>^ array
)
static member GetCollectionHashCode :
array : float[] -> int
Parameters
- array
- Type:System.Double[]
The array containing the items for which to compute the hash code.
Return Value
Type:
Int32The hash code.
See Also