C#public record TestRecord
{
public string Name { get; }
}
The record already contains compiler-generated Equals methods, so applying 'Equality Members' produces the following compiler error: "Type 'TestRecord' already defines a member called 'Equals' with the same parameter types".