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:
The default implementation of Equals supports reference equality for reference types, and bitwise equality for value types. Reference equality means the object references that are compared refer to the same object. Bitwise equality means the objects that are compared have the same binary representation.