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: ValueTuple<T, int, TValue>? MinTupleOrNull<T, TValue>(this IEnumerable<T>, Func<T, TValue>)Declarationpublic static ValueTuple<T, int, TValue>? MinTupleOrNull<T, TValue>(
this IEnumerable<T> source,
Func<T, TValue> valueSelector
)Summary
Returns the first element from the input sequence for which the value selector returns the smallest value, its
index, as well as that smallest value, or null if the collection is empty. Generic type parameters| T | This type parameter is not documented. | | TValue | This type parameter is not documented. |
|