Skip to content

Instantly share code, notes, and snippets.

@toshimaru
Created November 17, 2012 18:08
Show Gist options
  • Save toshimaru/4098368 to your computer and use it in GitHub Desktop.
Save toshimaru/4098368 to your computer and use it in GitHub Desktop.
C# Func<> sample.
class Program
{
static void Main(string[] args)
{
Func<int, int, int> abc = (n, i) => { return (n * i); };
Console.WriteLine(abc(3, 4));
/**
* output:
* 12
*/
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment