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
)
<ExtensionAttribute>
Public Shared Function Flatten (
source As IEnumerable
) As IEnumerable(Of Object)
public:
[ExtensionAttribute]
static IEnumerable<Object^>^ Flatten(
IEnumerable^ source
)
[<ExtensionAttribute>]
static member Flatten :
source : IEnumerable -> IEnumerable<Object>
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 See Also