c# list get sublist

C#
myList.GetRange(firstIndex, Count);
// or
myList.GetRange(firstIndex, lastIndex - firstIndex);
Source

Also in C#: