Skip to content

Instantly share code, notes, and snippets.

@korchoon
Created August 31, 2020 08:47
Show Gist options
  • Save korchoon/b5cef7e1f6525af446d1ebf8c76d43f0 to your computer and use it in GitHub Desktop.
Save korchoon/b5cef7e1f6525af446d1ebf8c76d43f0 to your computer and use it in GitHub Desktop.
using System.Runtime.CompilerServices;
static class HashUtils {
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public static int CombineWith(this int hash1, int hash2) => (hash1 * 397) ^ hash2;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment