using System;
using Cpp2IlInjected;
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: 0x02000108 RID: 264
[Token(Token = "0x2000108")]
public interface IEquatable
{
/// Indicates whether the current object is equal to another object of the same type.
/// An object to compare with this object.
///
/// if the current object is equal to the parameter; otherwise, .
// Token: 0x060009B0 RID: 2480
[Token(Token = "0x60009B0")]
[Address(Slot = "0")]
bool Equals(T other);
}
}