In Linq i.e. System.Linq, Take operator is used to get the first specified number of elements a sequence.
Linq Take() example
using System.Linq;
protected void Page_Load(object sender, EventArgs e)
{
var numArray = new int[5];
numArray[0] = 95;
numArray[1] = 66;
numArray[2] = 3;
numArray[3] = 54;
numArray[4] = 2;
var numbers = numArray.Take(3);
foreach (var number in numbers)
{
Console.WriteLine(number);
}
}
//It will print 95, 66, 3.
So in above sample code of Take() we have numArray.Take(3) that means it will return us the sequence of first three elements from array.
0 Comments :
Post a Comment