'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.