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<T> WhereNotNull<T>(this IEnumerable<T?>)Declarationpublic static IEnumerable<T> WhereNotNull<T>(
this IEnumerable<T?> src
) Summary
Returns only the non- null elements from the specified collection of nullable values as non-nullable
values. Generic type parametersParametersthis IEnumerable<T?> | src |
A collection of nullable values. |
Returns
A collection containing only those values that aren’t null . |