I've already gone through question
I understand that, it is necessary to implement ==, != and Equals().
public class BOX { double height, length, breadth; // this is first one '==' public static bool operator== (BOX obj1, BOX obj2) { return (obj1.length == obj2.length && obj1.breadth == obj2.breadth && obj1.height == obj2.height); } // this is second one '!=' public static bool operator!= (BOX obj1, BOX obj2) { return !(obj1.length == obj2.length && obj1.breadth == obj2.breadth && obj1.height == obj2.height); } // this is third one 'Equals' public override bool Equals(BOX obj) { return (length == obj.length && breadth == obj.breadth && height == obj.height); } } I assume, I've written code properly to override ==,!=,Equals operators. Though, I get compilation errors as follows.
'myNameSpace.BOX.Equals(myNameSpace.BOX)' is marked as an override but no suitable method found to override. So, question is - How to override above operators & get rid of this error?
public override bool Equals(object o)?!=likereturn !(obj1 == obj2)which should take advantage of what you already wrote for the==overload.