Skip to content

Instantly share code, notes, and snippets.

public static int GenerateHash(params int[] hashCodes)
{
unchecked
{
int hash = 17;
foreach (int i in hashCodes)
{
hash = hash * 23 + i;
}
return hash;