Click or drag to resize

HashCodeCombine Method (Int32, Int32)

Combines two hash codes.

Namespace:  AGI.Foundation.Infrastructure
Assembly:  AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.1.418.0 (24.1.418.0)
Syntax
public static int Combine(
	int hash1,
	int hash2
)

Parameters

hash1
Type: SystemInt32
The first hash code.
hash2
Type: SystemInt32
The second hash code.

Return Value

Type: Int32
The combined hash code.
Remarks
This method is based on the MurmurHash3 algorithm.
See Also