using System;
using System.Collections.Generic;
using System.Linq;
public class Program
{
public static void Main()
var collection = new List<string>()
"one",
"two",
"three",
"four",
"five",
"six",
"seven"
};
var batch = collection.Take(10);
Console.WriteLine("Hello World");
}