HashCodeCombine Method (Int32) |
Combines an arbitrary number of hash codes.
Namespace:
AGI.Foundation.Infrastructure
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public 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: SystemInt32
The hash codes.
Return Value
Type:
Int32The combined hash code.
Remarks
This method is based on the MurmurHash3 algorithm.
See Also