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
Skip Using LINQ In C#.net
// description of your code here
int[] val1= { 1, 3, 5, 7, 9, 11 };
var res = val1.Skip(2);
foreach (var val in res)
{
Console.WriteLine(val);
}





Comments
Snippets Manager replied on Wed, 2012/03/14 - 5:07am