Skip to content

Instantly share code, notes, and snippets.

@sslotsky
Last active March 6, 2019 20:33
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 sslotsky/798a32fe5538200d9b6a98eadc51afab to your computer and use it in GitHub Desktop.
Save sslotsky/798a32fe5538200d9b6a98eadc51afab to your computer and use it in GitHub Desktop.
// Fluent collection operations in C# using IEnumerable<T>
var selection = someCollection
.Select(x => x * 3)
.Where(x => x % 2 == 0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment