Skip to content

Instantly share code, notes, and snippets.

@snippe
Created December 5, 2014 12:14
Show Gist options
  • Save snippe/880f9245e30e77a55b3a to your computer and use it in GitHub Desktop.
Save snippe/880f9245e30e77a55b3a to your computer and use it in GitHub Desktop.
delegate int MultiplyDelegate(int x);
static void Main(string[] args)
{
MultiplyDelegate multi = x => x * x;
int result = multi(4); //16
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment