Skip to content

Instantly share code, notes, and snippets.

@steenhulthin
Created January 12, 2013 20:48
Show Gist options
  • Save steenhulthin/4520384 to your computer and use it in GitHub Desktop.
Save steenhulthin/4520384 to your computer and use it in GitHub Desktop.
namespace noget
{
class Abe
{
public Abe(Action anoMethod)
{}
}
class Chimp : Abe
{
public Chimp() : base(Banana)
{}
public static void Banana()
{}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment