'class' does not implement interface member 'member'
A class derived from an interface, but the class did not implement one or more of the interface's members. A class must implement all members of interfaces from which it derives.
The following sample generates CS0535:
namespace x { public interface a { void f(); } public class b : a { // CS0535, a::f is not implemented public static void Main() { } } }