MapIndexed3
Builds a new collection whose elements are the results of applying the given mapping
function to each triples of the elements of the collections.
The integer index passed to the function indicates the index (from 0) of element being transformed.
Parameters
Returns
Func<int, T, T2, T3, TResult> mapping
IEnumerable<T> source
IEnumerable<T2> source2
IEnumerable<T3> source3
IEnumerable<TResult>
Usage
Concatenating values and its index from three collections
Last updated
Was this helpful?