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 CS0533

'derived-class member' hides inherited abstract member 'base-class member'

A base class method is hidden. Check the syntax of your declaration to see if it is correct.

The following sample generates CS0533:

namespace x {
   abstract public class a {
      abstract public void f();
   }

   abstract public class b : a {
      new abstract public void f();   // CS0533
      // try the following line instead
      // override public void f(){} 
      public static void Main(){
      }
   }
}

See Also

base