Possible Duplicate:
Using Linq to get the last N elements of a collection?
In C#, .NET, how can I get the last k elements of a List?
Possible Duplicate:
Using Linq to get the last N elements of a collection?
In C#, .NET, how can I get the last k elements of a List?
MyList.GetRange(Mylist.Count - k, k);
I assume you want something like:
myList.Reverse();
myList.Take(amount);
myList.Reverse();
Without more info, I can't give you a better answer.