using System;
namespace System
{
/// Defines a generalized method that a value type or class implements to create a type-specific method for determining equality of instances.
/// The type of objects to compare.
// Token: 0x0200000E RID: 14
public interface IEquatable
{
/// Indicates whether the current object is equal to another object of the same type.
/// true if the current object is equal to the parameter; otherwise, false.
/// An object to compare with this object.
// Token: 0x0600008C RID: 140
bool Equals(T other);
}
}