Skip to content

Instantly share code, notes, and snippets.

@zeakd
Last active October 22, 2018 17:57
Show Gist options
  • Save zeakd/a22b67557e8c4761604703c64a88bde5 to your computer and use it in GitHub Desktop.
Save zeakd/a22b67557e8c4761604703c64a88bde5 to your computer and use it in GitHub Desktop.
Examples for explaining arrow funciton
...
List<int> numbers = new List<int>() { 1,2,3,4,5 };
List<int> squares = numbers
.Select(x => x * x)
.ToList();
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment