[]
Selects many items in N-order.
public static IEnumerable<T> SelectManyTransposed<T>(this IEnumerable<IEnumerable<T>> src)
| Type | Name | Description |
|---|---|---|
| IEnumerable<IEnumerable<T>> | src | The source sequence of sequences. |
| Type | Description |
|---|---|
| IEnumerable<T> | A sequence of elements transposed from the source sequences. |
| Name | Description |
|---|---|
| T | The type of elements in the sequence. |