Click or drag to resize

NullableExtensionsExceptNullItemsTSource Method

Filters a sequence of values based on their nullness.

Namespace:  TomsToolbox.Essentials
Assembly:  TomsToolbox.Essentials (in TomsToolbox.Essentials.dll)
Syntax
public static IEnumerable<TSource> ExceptNullItems<TSource>(
	this IEnumerable<TSource> source
)
where TSource : class

Parameters

source
Type: System.Collections.GenericIEnumerableTSource
An IEnumerableT to filter.

Type Parameters

TSource
The type of the elements of source.

Return Value

Type: IEnumerableTSource
An IEnumerableT that contains all elements from the input sequence that are not null.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IEnumerableTSource. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also