Guest User

Untitled

a guest
Oct 22nd, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. ...
  2. List<int> numbers = new List<int>() { 1,2,3,4,5 };
  3. List<int> squares = numbers
  4. .Select(x => x * x)
  5. .ToList();
  6. ...
Add Comment
Please, Sign In to add comment