Skip to content

Instantly share code, notes, and snippets.

@fecub
Created April 30, 2013 07:24
Show Gist options
  • Save fecub/5487136 to your computer and use it in GitHub Desktop.
Save fecub/5487136 to your computer and use it in GitHub Desktop.
Iterate a list with lambda
// normal version:
foreach(var item in fKeySequence)
{
Console.WriteLine("{0}", i);
}
// elegant version:
fKeySequence.ForEach(i => Console.WriteLine("{0}", i));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment