IndexOf<>(source, predicate, startIndex) IndexOf<>(source, element, comparer) JoinString<>(values, separator, prefix, suffix, lastSeparator) Order<>(source, comparer) SkipLast<>(source, count, throwIfNotEnough) Split<>(splitWhat, splitWhere) Split<>(source, chunkSize) 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<ValueTuple<T, T>> AllPairs<T>(this IEnumerable<T>)Declarationpublic static IEnumerable<ValueTuple<T, T>> AllPairs<T>(
this IEnumerable<T> source
) Summary
Returns an enumeration of tuples containing all pairs of elements from the source collection. For example, the
input sequence 1, 2 yields the pairs [1,1], [1,2], [2,1], and [2,2]. Generic type parametersT | This type parameter is not documented. |
|