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: int IndexOf<T>(this IEnumerable<T>, Func<T, bool>, int)Declarationpublic static int IndexOf<T>(
this IEnumerable<T> source,
Func<T, bool> predicate,
int startIndex
)Summary
Returns the index of the first element in this source satisfying the specified predicate, starting at the specified startIndex. If no such elements are found,
returns -1. Generic type parameters| T | This type parameter is not documented. |
|