Skip to content

Instantly share code, notes, and snippets.

@snippe
Created December 5, 2014 12:42
Show Gist options
  • Save snippe/2241b829342c10dae6a7 to your computer and use it in GitHub Desktop.
Save snippe/2241b829342c10dae6a7 to your computer and use it in GitHub Desktop.
Statement Lambda
delegate string MyDelegate(string val);
static void Main(string[] args)
{
MyDelegate del = n => {
string s = n + "!!!";
return s;
};
var delValue = del("Hello"); //Hello!!!
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment