BB.Caching.Hashing.Core.Initialize C# (CSharp) Method

Initialize() public method

Initializes the hashing core.
public Initialize ( uint seed, bool managed = true ) : void
seed uint /// The seed value to use for the murmurhash. ///
managed bool /// Whether murmurhash should be in managed space or unmanaged. ///
return void
            public void Initialize(uint seed = 0, bool managed = true)
            {
                this.MurmurHash = Murmur.MurmurHash.Create32(seed, managed);
            }
        }
Hashing.Core