Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

22 lines
854 B
C#

using System;
using Cpp2IlInjected;
namespace System
{
/// <summary>Defines a generalized method that a value type or class implements to create a type-specific method for determining equality of instances.</summary>
/// <typeparam name="T">The type of objects to compare.</typeparam>
// Token: 0x0200010F RID: 271
[Token(Token = "0x200010F")]
public interface IEquatable<T>
{
/// <summary>Indicates whether the current object is equal to another object of the same type.</summary>
/// <param name="other">An object to compare with this object.</param>
/// <returns>
/// <see langword="true" /> if the current object is equal to the <paramref name="other" /> parameter; otherwise, <see langword="false" />.</returns>
// Token: 0x060009DA RID: 2522
[Token(Token = "0x60009DA")]
[Address(Slot = "0")]
bool Equals(T other);
}
}