using System; using System.Collections.Generic; using System.Linq; public class Test { public static void Main() { List yourlist = new List(){1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15}; IEnumerable newlist = yourlist.Skip(2).Take(3); foreach(var i in newlist) Console.WriteLine(i); } }