Skip to content

Instantly share code, notes, and snippets.

@Collonville
Created December 11, 2015 18:45
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 Collonville/3745580069805fcfbffd to your computer and use it in GitHub Desktop.
Save Collonville/3745580069805fcfbffd to your computer and use it in GitHub Desktop.
static void Main(string[] args)
{
List<int> foo = new List<int> { 6, 1, 4, 9, 2 }; //list
var boo = foo.Where(x => x % 2 == 0 && x < 5); //get even num and is under 5
boo.ToList().ForEach(x => Console.WriteLine(x)); //show
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment