I\'m trying to implement a paging algorithm for a dataset sortable via many criteria. Unfortunately, while some of those criteria can be implemented at the database level, some
You can use List.Sort(int, int, IComparer):
inputList.Sort(startIndex, count, Comparer.Default);