.NET contains its own equality comparison functionality, however I don’t really understand how it works.
If the desired Equals() and == behaviour is to verify that every field of an object is equal to every field of another object, is it necessary to override Equals() with a method that does this explicitly?
If you’re working with a class, then yes, it’s necessary.
With reference types (classes), .NET, by default, provides an equality comparison that compares the reference itself, not values within the class. Overriding Equals is required if you want a field-by-field comparison.
With structs (value types), the default comparison is to compare field-by-field.
From the documentation: