Ejemplo n.º 1
0
        private uint TestHash2(string testString, uint seed)
        {
            var hashAlgoritm = new Murmur3(seed);
            var testBytes    = Encoding.UTF8.GetBytes(testString);

            return(hashAlgoritm.GenerateHash(testBytes));
        }