Skip to content

Instantly share code, notes, and snippets.

@mneedham
Created February 13, 2010 11:15
Show Gist options
  • Save mneedham/303389 to your computer and use it in GitHub Desktop.
Save mneedham/303389 to your computer and use it in GitHub Desktop.
public string SomeMethod(int value)
{
return (value + 2).ToString();
}
public string SomeMethod2(int value)
{
return (value + 3).ToString();
}
public string CommonMethod(int value, Func<int, int> op)
{
return op(value).ToString();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment