using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Collections
{
/// Supplies a hash code for an object, using a custom hash function.
// Token: 0x020005BC RID: 1468
[Token(Token = "0x20005BC")]
[Obsolete]
[Obsolete("Please use IEqualityComparer instead.")]
[ComVisible(true)]
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: 0x06002C7C RID: 11388
[Token(Token = "0x6002C7C")]
[Address(Slot = "0")]
int GetHashCode(object obj);
}
}