Say I have an interface IFoo and I want all subclasses of IFoo to override Object\'s ToString method. Is this possible?
IFoo
ToString
Simpl
I don't think you can force any sub-class to override any of the base-class's virtual methods unless those methods are abstract.