using System;
using System.Runtime.InteropServices;
namespace System.Collections
{
/// Supplies a hash code for an object, using a custom hash function.
/// 2
// Token: 0x02000136 RID: 310
[Obsolete("Please use IEqualityComparer instead.")]
[ComVisible(true)]
public interface IHashCodeProvider
{
/// Returns a hash code for the specified object.
/// A hash code for the specified object.
/// The for which a hash code is to be returned.
/// The type of is a reference type and is null.
/// 2
// Token: 0x06000FF0 RID: 4080
int GetHashCode(object obj);
}
}