Skip to content

Instantly share code, notes, and snippets.

@aggieben
Created July 13, 2009 19:39
Show Gist options
  • Save aggieben/146384 to your computer and use it in GitHub Desktop.
Save aggieben/146384 to your computer and use it in GitHub Desktop.
class Base
{
Base()
{
PostChildConstructorEvent += (() => /* do something after Thing is done initializing */);
}
}
class Thing : Base
{
Thing()
{
/* do something here */
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment