Skip to content

Instantly share code, notes, and snippets.

@emiaj
Created January 9, 2012 19:06
Show Gist options
  • Select an option

  • Save emiaj/1584393 to your computer and use it in GitHub Desktop.

Select an option

Save emiaj/1584393 to your computer and use it in GitHub Desktop.
Method groups
return List.Where(x=>something.IsTrue(x)).Select(x=>something.CreateFoo(x));
return List.Where(something.IsTrue).Select(something.CreateFoo);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment