MoreEnumerableFlatten Method (IEnumerable) | 
 
            Flattens a sequence containing arbitrarily-nested sequences.
            
 
    Namespace: 
   MoreLinq
    Assembly:
   MoreLinq (in MoreLinq.dll) Version: 3.2.0+5205ea241d72b079436060d330cd5c2eae7cdcdf
Syntaxpublic 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