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 CS0539

'member' in explicit interface declaration is not a member of interface

An attempt was made to explicitly declare an interface member that does not exist. You should either delete the declaration or change it so that it refers to a valid interface member.

The following sample generates CS0539:

namespace x {
   interface I {
      void m();
   }
   public class clx : I {
      void I.x() {   // CS0539
      }
      public static int Main() {
         return 0;
      }
   }
}