BB.Caching.Hashing.Murmur3.ComputeInt C# (CSharp) Method

ComputeInt() public static method

Computes a uint representing the murmur hash generated from a byte array.
public static ComputeInt ( byte value ) : uint
value byte /// The value. ///
return uint
            public static uint ComputeInt(byte[] value)
            {
                byte[] res = Hashing.Core.Instance.MurmurHash.ComputeHash(value);
                return BitConverter.ToUInt32(res, 0);
            }

Same methods

Hashing.Murmur3::ComputeInt ( string value ) : uint