ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Core.Rendering Assembly / GrapeCity.ActiveReports.Rendering.Tools Namespace / EnumerableExtension Class / SelectManyTransposed<T> Method
The type of elements in the sequence.
The source sequence of sequences.

In This Topic
    SelectManyTransposed<T> Method
    In This Topic
    Selects many items in N-order.
    Syntax
    'Declaration
     
    Public Shared Function SelectManyTransposed(Of T)( _
       ByVal src As IEnumerable(Of IEnumerable(Of T)) _
    ) As IEnumerable(Of T)
    public static IEnumerable<T> SelectManyTransposed<T>( 
       IEnumerable<IEnumerable<T>> src
    )

    Parameters

    src
    The source sequence of sequences.

    Type Parameters

    T
    The type of elements in the sequence.

    Return Value

    A sequence of elements transposed from the source sequences.
    See Also