HashCode.Combine Method (Int32[]) |
Combines an arbitrary number of hash codes.
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 Combine(
params int[] hashes
)
Public Shared Function Combine (
ParamArray hashes As Integer()
) As Integer
public:
static int Combine(
... array<int>^ hashes
)
static member Combine :
hashes : int[] -> int
Parameters
- hashes
- Type:System.Int32[]
The hash codes.
Return Value
Type:
Int32The combined hash code.
Remarks
This method is based on the MurmurHash3 algorithm.
See Also