VPEnumerableExtensions Zip TFirst, TSecond, TThird, TFourth, TResult  Method (IEnumerable TFirst , IEnumerable TSecond , IEnumerable TThird , IEnumerable TFourth , Func TFirst, TSecond, TThird, TFourth, TResult )Virtual Photonics - VTS Library
Virtual Photonics

Namespace: Vts.Extensions
Assembly: Vts (in Vts.dll) Version: 1.0.12.0 (1.0.12)
Syntax

public static IEnumerable<TResult> Zip<TFirst, TSecond, TThird, TFourth, TResult>(
	this IEnumerable<TFirst> first,
	IEnumerable<TSecond> second,
	IEnumerable<TThird> third,
	IEnumerable<TFourth> fourth,
	Func<TFirst, TSecond, TThird, TFourth, TResult> func
)

Parameters

first
Type: OnlineSystem.Collections.Generic IEnumerable TFirst 
second
Type: OnlineSystem.Collections.Generic IEnumerable TSecond 
third
Type: OnlineSystem.Collections.Generic IEnumerable TThird 
fourth
Type: OnlineSystem.Collections.Generic IEnumerable TFourth 
func
Type: OnlineSystem Func TFirst, TSecond, TThird, TFourth, TResult 
Type Parameters

TFirst
TSecond
TThird
TFourth
TResult

Return Value

Type: OnlineIEnumerable TResult 

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type OnlineIEnumerable TFirst . When you use instance method syntax to call this method, omit the first parameter. For more information, see OnlineExtension Methods (Visual Basic) or OnlineExtension Methods (C# Programming Guide).
See Also