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
Copy file name to clipboardExpand all lines: xml/System.Linq/Enumerable.xml
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -12612,8 +12612,8 @@ Only unique elements are returned.
12612
12612
<typeparam name="TSecond">The type of the elements of the second input sequence.</typeparam>
12613
12613
<param name="first">The first sequence to merge.</param>
12614
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>
12615
+
<summary>Produces a sequence of tuples with elements from the two specified sequences.</summary>
12616
+
<returns>A sequence of tuples with elements taken from the first and second sequences, in that order.</returns>
Copy file name to clipboardExpand all lines: xml/System.Linq/Queryable.xml
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -8301,8 +8301,8 @@
8301
8301
<typeparam name="TSecond">The type of the elements of the second input sequence.</typeparam>
8302
8302
<param name="source1">The first sequence to merge.</param>
8303
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>
8304
+
<summary>Produces a sequence of tuples with elements from the two specified sequences.</summary>
8305
+
<returns>A sequence of tuples with elements taken from the first and second sequences, in that order.</returns>
0 commit comments