using System; using System.Runtime.InteropServices; using Cpp2IlInjected; namespace System.Collections { /// Supplies a hash code for an object, using a custom hash function. // Token: 0x020005DB RID: 1499 [Token(Token = "0x20005DB")] [Obsolete] [ComVisible(true)] [Obsolete("Please use IEqualityComparer instead.")] public interface IHashCodeProvider { /// Returns a hash code for the specified object. /// The for which a hash code is to be returned. /// A hash code for the specified object. /// The type of is a reference type and is . // Token: 0x06002E92 RID: 11922 [Token(Token = "0x6002E92")] [Address(Slot = "0")] int GetHashCode(object obj); } }