System.Collections.IStructuralEquatable
namespace System.Collections
{
public interface IStructuralEquatable
{
bool Equals(object other, IEqualityComparer comparer);
int GetHashCode(IEqualityComparer comparer);
}
}