Skip to content

Instantly share code, notes, and snippets.

@angelovstanton
Created August 23, 2015 12:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save angelovstanton/7151b961739204b185be to your computer and use it in GitHub Desktop.
Save angelovstanton/7151b961739204b185be to your computer and use it in GitHub Desktop.
Func<int, int, int, int> sumNumbers = (x, y, z) => x + y + z;
Func<int, int> f4 = sumNumbers.Partial(3, 4);
Console.WriteLine(f4(5));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment