Skip to content

Instantly share code, notes, and snippets.

@plioi
Created May 3, 2012 03:18
Show Gist options
  • Save plioi/2582784 to your computer and use it in GitHub Desktop.
Save plioi/2582784 to your computer and use it in GitHub Desktop.
public string Stringify(int x)
{
return x.ToString();
}
//Later...
Func<int, string> func = Stringify;
Converter<int, string> convert = Stringify;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment