Click or drag to resize

MoreEnumerable.EquiZip Method

Overload List
  NameDescription
Public methodStatic memberCode exampleEquiZip<TFirst, TSecond, TResult>(IEnumerable<TFirst>, IEnumerable<TSecond>, Func<TFirst, TSecond, TResult>)
Returns a projection of tuples, where each tuple contains the N-th element from each of the argument sequences.
Public methodStatic memberCode exampleEquiZip<T1, T2, T3, TResult>(IEnumerable<T1>, IEnumerable<T2>, IEnumerable<T3>, Func<T1, T2, T3, TResult>)
Returns a projection of tuples, where each tuple contains the N-th element from each of the argument sequences.
Public methodStatic memberCode exampleEquiZip<T1, T2, T3, T4, TResult>(IEnumerable<T1>, IEnumerable<T2>, IEnumerable<T3>, IEnumerable<T4>, Func<T1, T2, T3, T4, TResult>)
Returns a projection of tuples, where each tuple contains the N-th element from each of the argument sequences.
Top
See Also