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
/// Correlates the elements of two sequences based on matching keys; elements of the first sequence are returned regardless of whether matching elements are found in the second sequence.
445
-
/// The default equality comparer is used to compare keys.
442
+
/// Correlates the elements of two sequences based on matching keys. The default equality comparer is used to compare keys.
446
443
/// </summary>
447
444
/// <param name="outer">The first sequence to join.</param>
448
445
/// <param name="inner">The sequence to join to the first sequence.</param>
@@ -556,8 +553,7 @@ public static IQueryable<TResult> LeftJoin<TOuter, TInner, TKey, TResult>(this I
556
553
}
557
554
558
555
/// <summary>
559
-
/// Correlates the elements of two sequences based on matching keys; elements of the first sequence are returned regardless of whether matching elements are found in the second sequence.
560
-
/// The default equality comparer is used to compare keys.
556
+
/// Correlates the elements of two sequences based on matching keys. A specified <see cref="IEqualityComparer{T}" /> is used to compare keys.
561
557
/// </summary>
562
558
/// <param name="outer">The first sequence to join.</param>
563
559
/// <param name="inner">The sequence to join to the first sequence.</param>
@@ -870,8 +866,7 @@ public static IOrderedQueryable<TSource> OrderByDescending<TSource, TKey>(this I
870
866
}
871
867
872
868
/// <summary>
873
-
/// Correlates the elements of two sequences based on matching keys; elements of the second sequence are returned regardless of whether matching elements are found in the first sequence.
874
-
/// The default equality comparer is used to compare keys.
869
+
/// Correlates the elements of two sequences based on matching keys. The default equality comparer is used to compare keys.
875
870
/// </summary>
876
871
/// <param name="outer">The first sequence to join.</param>
877
872
/// <param name="inner">The sequence to join to the first sequence.</param>
/// Correlates the elements of two sequences based on matching keys; elements of the second sequence are returned regardless of whether matching elements are found in the first sequence.
988
-
/// The default equality comparer is used to compare keys.
982
+
/// Correlates the elements of two sequences based on matching keys. A specified <see cref="IEqualityComparer{T}" /> is used to compare keys.
989
983
/// </summary>
990
984
/// <param name="outer">The first sequence to join.</param>
991
985
/// <param name="inner">The sequence to join to the first sequence.</param>
Copy file name to clipboardExpand all lines: src/libraries/System.Linq/src/System/Linq/LeftJoin.cs
+2-4Lines changed: 2 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -8,8 +8,7 @@ namespace System.Linq
8
8
publicstaticpartialclassEnumerable
9
9
{
10
10
/// <summary>
11
-
/// Correlates the elements of two sequences based on matching keys; elements of the first sequence are returned regardless of whether matching elements are found in the second sequence.
12
-
/// The default equality comparer is used to compare keys.
11
+
/// Correlates the elements of two sequences based on matching keys. The default equality comparer is used to compare keys.
13
12
/// </summary>
14
13
/// <param name="outer">The first sequence to join.</param>
15
14
/// <param name="inner">The sequence to join to the first sequence.</param>
/// Correlates the elements of two sequences based on matching keys; elements of the first sequence are returned regardless of whether matching elements are found in the second sequence.
115
-
/// The default equality comparer is used to compare keys.
113
+
/// Correlates the elements of two sequences based on matching keys. A specified <see cref="IEqualityComparer{T}" /> is used to compare keys.
116
114
/// </summary>
117
115
/// <param name="outer">The first sequence to join.</param>
118
116
/// <param name="inner">The sequence to join to the first sequence.</param>
Copy file name to clipboardExpand all lines: src/libraries/System.Linq/src/System/Linq/RightJoin.cs
+2-4Lines changed: 2 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -8,8 +8,7 @@ namespace System.Linq
8
8
publicstaticpartialclassEnumerable
9
9
{
10
10
/// <summary>
11
-
/// Correlates the elements of two sequences based on matching keys; elements of the second sequence are returned regardless of whether matching elements are found in the first sequence.
12
-
/// The default equality comparer is used to compare keys.
11
+
/// Correlates the elements of two sequences based on matching keys. The default equality comparer is used to compare keys.
13
12
/// </summary>
14
13
/// <param name="outer">The first sequence to join.</param>
15
14
/// <param name="inner">The sequence to join to the first sequence.</param>
/// Correlates the elements of two sequences based on matching keys; elements of the second sequence are returned regardless of whether matching elements are found in the first sequence.
114
-
/// The default equality comparer is used to compare keys.
112
+
/// Correlates the elements of two sequences based on matching keys. A specified <see cref="IEqualityComparer{T}" /> is used to compare keys.
115
113
/// </summary>
116
114
/// <param name="outer">The first sequence to join.</param>
117
115
/// <param name="inner">The sequence to join to the first sequence.</param>