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
abstract class Foo { public override abstract string ToString(); } class Bar : Foo { // need to override ToString() }