Virtual PhotonicsNamespace: Vts.Extensions
Assembly: Vts (in Vts.dll) Version: 1.0.12.0 (1.0.12)
Assembly: Vts (in Vts.dll) Version: 1.0.12.0 (1.0.12)
Syntax
public static IEnumerable<TResult> Zip<TFirst, TSecond, TThird, TFourth, TFifth, TResult>( this IEnumerable<TFirst> first, IEnumerable<TSecond> second, IEnumerable<TThird> third, IEnumerable<TFourth> fourth, IEnumerable<TFifth> fifth, Func<TFirst, TSecond, TThird, TFourth, TFifth, TResult> func )
Parameters
- first
- Type: System.Collections.Generic IEnumerable TFirst
- second
- Type: System.Collections.Generic IEnumerable TSecond
- third
- Type: System.Collections.Generic IEnumerable TThird
- fourth
- Type: System.Collections.Generic IEnumerable TFourth
- fifth
- Type: System.Collections.Generic IEnumerable TFifth
- func
- Type: System Func TFirst, TSecond, TThird, TFourth, TFifth, TResult
Type Parameters
- TFirst
- TSecond
- TThird
- TFourth
- TFifth
- TResult
Return Value
Type: IEnumerable TResultUsage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IEnumerable TFirst . When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).See Also