Calling overriden virtual methods from the parent class
问题 Say you were writing the original C# Object class and you wanted the following functionality: object1 == object2 will compare references unless this operator is overridden object1 != object2 will always return the inverse of the object's ACTUAL object1 == object2 So, for example, if I have a Bunny class (derived from Object ) which uses ear lengths as its equals method, then the notequals method (inherited from Object ) should return true if the bunnies have different ear lengths. The problem