NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Compiler Error CS0535

'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() {
      }
   }
}