Legend
| Method: ListSelectIterator<TInput, TResult> Reverse()
Declarationpublic ListSelectIterator<TInput, TResult> Reverse()SummaryInverts the order of the elements in a sequence.ReturnsA list whose elements correspond to those of the input sequence in reverse order.RemarksThis method replaces Enumerable.Reverse<TM1>(IEnumerable<TM1>) for the case where the input is an IList<T> with an implementation that makes a subsequentToArray() or
ToList() run 15% faster. |