Accessing a range of elements from any point in an IEnumerable
What about Skip() and Take() extensions methods?
var items = ReadTransactions(file_name).Skip(40).Take(10);
what about ElementAt
seems to me this is what you are looking for
What about Skip() and Take() extensions methods?
var items = ReadTransactions(file_name).Skip(40).Take(10);
what about ElementAt
seems to me this is what you are looking for