This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
@@ -0,0 +1,29 @@
using System;
using Cpp2IlInjected;
namespace System.Collections
{
/// <summary>Defines methods to support the comparison of objects for structural equality.</summary>
// Token: 0x020005DE RID: 1502
[Token(Token = "0x20005DE")]
public interface IStructuralEquatable
{
/// <summary>Determines whether an object is structurally equal to the current instance.</summary>
/// <param name="other">The object to compare with the current instance.</param>
/// <param name="comparer">An object that determines whether the current instance and <paramref name="other" /> are equal.</param>
/// <returns>
/// <see langword="true" /> if the two objects are equal; otherwise, <see langword="false" />.</returns>
// Token: 0x06002E9F RID: 11935
[Token(Token = "0x6002E9F")]
[Address(Slot = "0")]
bool Equals(object other, IEqualityComparer comparer);
/// <summary>Returns a hash code for the current instance.</summary>
/// <param name="comparer">An object that computes the hash code of the current object.</param>
/// <returns>The hash code for the current instance.</returns>
// Token: 0x06002EA0 RID: 11936
[Token(Token = "0x6002EA0")]
[Address(Slot = "1")]
int GetHashCode(IEqualityComparer comparer);
}
}