Skip to content

Instantly share code, notes, and snippets.

@SittenSpynne
Created April 30, 2010 21:30
Show Gist options
  • Save SittenSpynne/385776 to your computer and use it in GitHub Desktop.
Save SittenSpynne/385776 to your computer and use it in GitHub Desktop.
abstract class FooBase
{
public string GetMessage()
{
return GetMessageCore();
}
protected abstract string GetMessageCore();
}
class Foo : FooBase
{
protected override string GetMessageCore()
{
return "Hello";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment