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