Enumerable.Zip<'TFirst, 'TSecond, 'TResult> Method (IEnumerable<'TFirst>, IEnumerable<'TSecond>, Func<'TFirst, 'TSecond, 'TResult>)
![]() |
---|
The .NET API Reference documentation has a new home. Visit the .NET API Browser on docs.microsoft.com to see the new experience. |
Applies a specified function to the corresponding elements of two sequences, producing a sequence of the results.
Assembly: System.Core (in System.Core.dll)
static member Zip<'TFirst, 'TSecond, 'TResult> : first:IEnumerable<'TFirst> * second:IEnumerable<'TSecond> * resultSelector:Func<'TFirst, 'TSecond, 'TResult> -> IEnumerable<'TResult>
Parameters
- first
-
Type:
System.Collections.Generic.IEnumerable<'TFirst>
The first sequence to merge.
- second
-
Type:
System.Collections.Generic.IEnumerable<'TSecond>
The second sequence to merge.
- resultSelector
-
Type:
System.Func<'TFirst, 'TSecond, 'TResult>
A function that specifies how to merge the elements from the two sequences.
Return Value
Type: System.Collections.Generic.IEnumerable<'TResult>An IEnumerable<'T> that contains merged elements of two input sequences.
Type Parameters
- TFirst
The type of the elements of the first input sequence.
- TSecond
The type of the elements of the second input sequence.
- TResult
The type of the elements of the result sequence.
Exception | Condition |
---|---|
ArgumentNullException | first or second is null. |
This method is implemented by using deferred execution. The immediate return value is an object that stores all the information that is required to perform the action. The query represented by this method is not executed until the object is enumerated either by calling its GetEnumerator method directly or by using foreach in Visual C# or For Each in Visual Basic.
The method merges each element of the first sequence with an element that has the same index in the second sequence. If the sequences do not have the same number of elements, the method merges sequences until it reaches the end of one of them. For example, if one sequence has three elements and the other one has four, the result sequence will have only three elements.
Available since 8
.NET Framework
Available since 4.0
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 4.0
Windows Phone Silverlight
Available since 8.0
Windows Phone
Available since 8.1