Skip to content

Instantly share code, notes, and snippets.

@robinvanderknaap
Created July 9, 2017 09:03
Show Gist options
  • Save robinvanderknaap/43ca26c72c1c667ba5bc3f8b884bd576 to your computer and use it in GitHub Desktop.
Save robinvanderknaap/43ca26c72c1c667ba5bc3f8b884bd576 to your computer and use it in GitHub Desktop.
class CompositeClass
{
private BaseClass baseClass;
public CompositeClass()
{
baseClass = new BaseClass();
}
public void DoSomeWork()
{
baseClass.DoSomeWork();
// Add extra code here..
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment