You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<typeparam name="TSecond">To be added.</typeparam>
12613
-
<param name="first">To be added.</param>
12614
-
<param name="second">To be added.</param>
12615
-
<summary>To be added.</summary>
12616
-
<returns>To be added.</returns>
12611
+
<typeparam name="TFirst">The type of the elements of the first input sequence.</typeparam>
12612
+
<typeparam name="TSecond">The type of the elements of the second input sequence.</typeparam>
12613
+
<param name="first">The first sequence to merge.</param>
12614
+
<param name="second">The second sequence to merge.</param>
12615
+
<summary>Applies a specified function to the corresponding elements of two sequences, producing a sequence of value types with elements from both sequences.</summary>
12616
+
<returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> that contains merged value types with first elements taken from first sequence and second elements taken from second sequence.</returns>
<typeparam name="TSecond">To be added.</typeparam>
8302
-
<param name="source1">To be added.</param>
8303
-
<param name="source2">To be added.</param>
8304
-
<summary>To be added.</summary>
8305
-
<returns>To be added.</returns>
8300
+
<typeparam name="TFirst">The type of the elements of the first input sequence.</typeparam>
8301
+
<typeparam name="TSecond">The type of the elements of the second input sequence.</typeparam>
8302
+
<param name="source1">The first sequence to merge.</param>
8303
+
<param name="source2">The second sequence to merge.</param>
8304
+
<summary>Merges two sequences by using the specified predicate function, producing a sequence of value types with elements from both sequences.</summary>
8305
+
<returns>An <see cref="T:System.Linq.IQueryable`1" /> that contains merged value types with first elements taken from first sequence and second elements taken from second sequence.</returns>
0 commit comments