Skip to content

Instantly share code, notes, and snippets.

@emiaj
Created February 27, 2013 01:48
Show Gist options
  • Select an option

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

Select an option

Save emiaj/5044226 to your computer and use it in GitHub Desktop.
var adults = Persons.Where(_.Age > 18)
var adults = Persons.Where(x => x.Age > 18);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment