Queryable::Zip<TFirst, TSecond, TResult> Method
Merges two sequences by using the specified predicate function.
Namespace: System.Linq
Assembly: System.Core (in System.Core.dll)
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.
Parameters
- source1
- Type: System.Linq::IQueryable<TFirst>
The first sequence to merge.
- source2
- Type: System.Collections.Generic::IEnumerable<TSecond>
The second sequence to merge.
- resultSelector
- Type: System.Linq.Expressions::Expression<Func<TFirst, TSecond, TResult>>
A function that specifies how to merge the elements from the two sequences.
Return Value
Type: System.Linq::IQueryable<TResult>An IQueryable<T> that contains merged elements of two input sequences.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IQueryable<TFirst>. When you use instance method syntax to call this method, omit the first parameter.| Exception | Condition |
|---|---|
| ArgumentNullException | source1or source2 is nullptr. |
The Zip<TFirst, TSecond, TResult> method generates a MethodCallExpression that represents calling Zip<TFirst, TSecond, TResult> itself as a constructed generic method. It then passes the MethodCallExpression to the CreateQuery<TElement>(Expression) method of the IQueryProvider represented by the Provider property of the source1 parameter.
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 resulting sequence will have only three elements.
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.