Advertisement
Guest User

Untitled

a guest
May 24th, 2015
225
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. using System.Collections.Generic;
  2. using System.Linq;
  3.  
  4. class Program
  5. {
  6. static void Main(string[] args)
  7. {
  8. var list = new List<int>();
  9. list.Where(x => x % 2 == 0)
  10. .OrderByDescending(x => x)
  11. .Select(x => x);
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement