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 CS0205

Cannot call an abstract base method or property: 'method'

You cannot call an abstract method, even from within the implementation of the method.

The following sample generates CS0205:

abstract public class MyClass {
   abstract public void mf();
}

public class MyClass2 : MyClass {

   public override void mf() {
      base.mf();   // CS0205, delete this line
   }
   public static void Main() {
   }
}