Skip to content

Instantly share code, notes, and snippets.

@gugavaro
Created March 2, 2020 19:24
Show Gist options
  • Save gugavaro/b12699a8c2aea2811f41a30184d4acda to your computer and use it in GitHub Desktop.
Save gugavaro/b12699a8c2aea2811f41a30184d4acda to your computer and use it in GitHub Desktop.
before
public abstract base {
}
public derrived : base {
public derrived get();
}
now:
public abstract base {
public abstract base get();
}
public derrived : base {
public override base get();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment