Example #1
0
        public static int CombineHashCodes(int first, int second)
        {
            uint h = 0U;

            Hashing.Hash(ref h, first);
            Hashing.Hash(ref h, second);
            return(Hashing.Avalanche(h));
        }