AddSafe<>(dic, key1, key2, value, comparer) IndexOf<>(source, predicate, startIndex) IndexOf<>(source, element, comparer) JoinString<>(values, separator, prefix, suffix, lastSeparator) Order<>(source, comparer) SkipLast<>(source, count, throwIfNotEnough) Split<>(source, chunkSize) Split<>(splitWhat, splitWhere) ToDictionary2<>(source, key1Selector, key2Selector, comparer1, comparer2) ToDictionary2<>(source, key1Selector, key2Selector, elementSelector, comparer1, comparer2)
Legend Class Struct Enum Interface Delegate | Constructor Method Property Event Field |
| Extension method: IEnumerable<T> TakeLast<T>(this IEnumerable<T>, int)Declarationpublic static IEnumerable<T> TakeLast<T>(
this IEnumerable<T> source,
int count
)Summary
Returns a collection containing only the last count items of the input collection. This
method enumerates the entire collection to the end once before returning. Note also that the memory usage of
this method is proportional to count. Generic type parameters| T | This type parameter is not documented. |
|