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: T FirstOrDefault<T>(this IEnumerable<T>, Func<T, bool>, T)Declarationpublic static T FirstOrDefault<T>(
this IEnumerable<T> source,
Func<T, bool> predicate,
T default
) Summary
Returns the first element of a sequence, or a default value if the sequence contains no elements. Generic type parametersT |
The type of the elements of source. |
Parametersthis IEnumerable<T> | source |
The IEnumerable<T> to return the first element of. | Func<T, bool> | predicate |
A function to test each element for a condition. | T | default |
The default value to return if the sequence contains no elements. |
Returnsdefault if source is empty or if no element passes the test specified by
predicate; otherwise, the first element in source that passes the test
specified by predicate. |