Skip to content

Abstract Classes

Mario Gutierrez edited this page Jan 7, 2017 · 4 revisions
abstract class MyAbstractClass
{
  public abstract void AbstractMethod(); // Not implemented here.
}

class AnotherClass : MyAbstractClass
{
  public override void AbstractMethod() { /* ... */ }
}

Clone this wiki locally