Click or drag to resize

FlattenExtensionFlatten Method (IEnumerable)

Flattens a sequence containing arbitrarily-nested sequences.

Namespace:  MoreLinq.Extensions
Assembly:  MoreLinq (in MoreLinq.dll) Version: 3.0.0
Syntax
public static IEnumerable<Object> Flatten(
	this IEnumerable source
)

Parameters

source
Type: System.CollectionsIEnumerable
The sequence that will be flattened.

Return Value

Type: IEnumerableObject
A sequence that contains the elements of source and all nested sequences (except strings).

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IEnumerable. 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).
Exceptions
ExceptionCondition
ArgumentNullExceptionsource is null.
See Also