Created
April 13, 2015 19:28
-
-
Save jmarolf/254ed5f70978abf453a8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Collections.Generic; | |
using System.Linq; | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
var list = new List<int>(); | |
list.Where(x => x % 2 == 0) | |
.OrderByDescending(x => x) | |
.Select(x => x); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment