ComponentOne Bitmap for WPF
C1.WPF.DX.4.5.2 Assembly / C1.Util.DX Namespace / DXUtil Class / SelectMany<TSource,TResult> Method
The type of the T source.
The type of the T result.
The source.
The selector.

In This Topic
    SelectMany<TSource,TResult> Method
    In This Topic
    Select elements from an enumeration.
    Syntax
    'Declaration
     
    Public Shared Function SelectMany
        (Of TSource,TResult)( _
       ByVal source As IEnumerable(Of TSource), _
       ByVal selector As Func(Of TSource,IEnumerable(Of TResult)) _
    ) As IEnumerable(Of TResult)

    Parameters

    source
    The source.
    selector
    The selector.

    Type Parameters

    TSource
    The type of the T source.
    TResult
    The type of the T result.

    Return Value

    A enumeration of selected values
    See Also