Skip to content

Instantly share code, notes, and snippets.

@johnnonolan
Created April 23, 2011 12:33
Show Gist options
  • Select an option

  • Save johnnonolan/938572 to your computer and use it in GitHub Desktop.

Select an option

Save johnnonolan/938572 to your computer and use it in GitHub Desktop.
public class MyAbstractClass
{
public string MyMethodOnAbstractClass(string input)
{
return "I like " + input + " in an abstract sense.";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment