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
LINQ With Projection
int[] numbersList = { 5, 4, 1, 3 };
var result =
from n in numbers
select n * 2;
foreach (var i in result)
{
Console.WriteLine(i);
}





