interface I { void Foo(); } class BaseClass { public void Foo(){} } class DerivedClass : BaseClass, I { }
Rename Foo from the interface.