DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Using Where With LINQ
int[] numbersList = { 5, 4, 1, 3 };
var result =
from n in numbersList
where n < 4
select n;
foreach (var x in result)
{
Console.WriteLine(x);
}





