Skip to content

Instantly share code, notes, and snippets.

@tanglebones
Created July 10, 2013 20:09
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 tanglebones/5969849 to your computer and use it in GitHub Desktop.
Save tanglebones/5969849 to your computer and use it in GitHub Desktop.
// Do not do:
var l = new List<Action>{ f, g, h };
l.ForEach(x=>x());
// Instead of:
f();
g();
h();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment