top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

How to Get the Last N Elements from a List using LINQ in C#?

0 votes
1,472 views
How to Get the Last N Elements from a List using LINQ in C#?
posted May 14, 2016 by Sathyasree

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes
using System;

using System.Collections.Generic;

using System.Data;

using System.Linq;

namespace AbundantCode

{

internal class Program

{

//How to get the Last N Elements from a List using LINQ in C#?

private static void Main(string[] args)

{

List<Employee> employees = new List<Employee>()

{

new Employee { EmpID = 1 , Name ="Martin"},

new Employee { EmpID = 2 , Name ="Peter"},

new Employee { EmpID = 3 , Name ="Michael"},

new Employee { EmpID = 3 , Name ="Michael"}

};

//Gets the Distinct List

var LstItems = employees.Skip(Math.Max(0, employees.Count() - 2)).Take(2);

foreach (var item in LstItems)

Console.WriteLine(item.Name);

Console.ReadLine();

}

}

public class Employee

{

public string Name { get; set; }

public int EmpID { get; set; }

}

}
answer May 14, 2016 by Shivaranjini
...