Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions xml/System.Linq/Enumerable.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12608,12 +12608,12 @@ Only unique elements are returned.
<Parameter Name="second" Type="System.Collections.Generic.IEnumerable&lt;TSecond&gt;" Index="1" FrameworkAlternate="netcore-3.0" />
</Parameters>
<Docs>
<typeparam name="TFirst">To be added.</typeparam>
<typeparam name="TSecond">To be added.</typeparam>
<param name="first">To be added.</param>
<param name="second">To be added.</param>
<summary>To be added.</summary>
<returns>To be added.</returns>
<typeparam name="TFirst">The type of the elements of the first input sequence.</typeparam>
<typeparam name="TSecond">The type of the elements of the second input sequence.</typeparam>
<param name="first">The first sequence to merge.</param>
<param name="second">The second sequence to merge.</param>
<summary>Applies a specified function to the corresponding elements of two sequences, producing a sequence of value types with elements from both sequences.</summary>
<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>
<remarks>To be added.</remarks>
</Docs>
</Member>
Expand Down
12 changes: 6 additions & 6 deletions xml/System.Linq/Queryable.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8297,12 +8297,12 @@
<Parameter Name="source2" Type="System.Collections.Generic.IEnumerable&lt;TSecond&gt;" Index="1" FrameworkAlternate="netcore-3.0" />
</Parameters>
<Docs>
<typeparam name="TFirst">To be added.</typeparam>
<typeparam name="TSecond">To be added.</typeparam>
<param name="source1">To be added.</param>
<param name="source2">To be added.</param>
<summary>To be added.</summary>
<returns>To be added.</returns>
<typeparam name="TFirst">The type of the elements of the first input sequence.</typeparam>
<typeparam name="TSecond">The type of the elements of the second input sequence.</typeparam>
<param name="source1">The first sequence to merge.</param>
<param name="source2">The second sequence to merge.</param>
<summary>Merges two sequences by using the specified predicate function, producing a sequence of value types with elements from both sequences.</summary>
<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>
<remarks>To be added.</remarks>
</Docs>
</Member>
Expand Down