This commit is contained in:
niko
2026-04-11 22:19:20 +02:00
parent 45b857ff11
commit 8fc35183db
17034 changed files with 2863552 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
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: 0x02000108 RID: 264
[Token(Token = "0x2000108")]
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: 0x060009B0 RID: 2480
[Token(Token = "0x60009B0")]
[Address(Slot = "0")]
bool Equals(T other);
}
}