using System;
using System.Linq;
public class Program
{
public static void Main()
int[] test = new[] { 1, 2, 3, 4, 5, 6, 7, 8 };
var t = test.AsQueryable().Skip(5).Take(5).Where(d => d <5);
var t2 = test.AsQueryable().Skip(5).Take(5);
foreach (int i in t)
Console.WriteLine(i.ToString());
}
foreach (int i in t2)
Console.ReadLine(); }