using System;
namespace System.Collections.Generic
{
/// Defines methods to support the comparison of objects for equality.
/// The type of objects to compare.
// Token: 0x0200010B RID: 267
public interface IEqualityComparer
{
/// Determines whether the specified objects are equal.
/// true if the specified objects are equal; otherwise, false.
/// The first object of type to compare.
/// The second object of type to compare.
// Token: 0x06000CFD RID: 3325
bool Equals(T x, T y);
/// 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.
// Token: 0x06000CFE RID: 3326
int GetHashCode(T obj);
}
}