Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit607dbb9

Browse files
committed
Correct summaries
1 parent676a030 commit607dbb9

File tree

4 files changed

+12
-24
lines changed

4 files changed

+12
-24
lines changed

‎src/libraries/System.Linq.Queryable/src/System/Linq/Queryable.cs

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -179,8 +179,7 @@ private static Expression GetSourceExpression<TSource>(IEnumerable<TSource> sour
179179
}
180180

181181
/// <summary>
182-
/// Correlates the elements of two sequences based on matching keys.
183-
/// The default equality comparer is used to compare keys.
182+
/// Correlates the elements of two sequences based on matching keys. The default equality comparer is used to compare keys.
184183
/// </summary>
185184
/// <param name="outer">The first sequence to join.</param>
186185
/// <param name="inner">The sequence to join to the first sequence.</param>
@@ -293,8 +292,7 @@ public static IQueryable<TResult> Join<TOuter, TInner, TKey, TResult>(this IQuer
293292
}
294293

295294
/// <summary>
296-
/// Correlates the elements of two sequences based on matching keys.
297-
/// The default equality comparer is used to compare keys.
295+
/// Correlates the elements of two sequences based on matching keys. A specified <see cref="IEqualityComparer{T}" /> is used to compare keys.
298296
/// </summary>
299297
/// <param name="outer">The first sequence to join.</param>
300298
/// <param name="inner">The sequence to join to the first sequence.</param>
@@ -441,8 +439,7 @@ public static IQueryable<TResult> GroupJoin<TOuter, TInner, TKey, TResult>(this
441439
}
442440

443441
/// <summary>
444-
/// 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.
446443
/// </summary>
447444
/// <param name="outer">The first sequence to join.</param>
448445
/// <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
556553
}
557554

558555
/// <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.
561557
/// </summary>
562558
/// <param name="outer">The first sequence to join.</param>
563559
/// <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
870866
}
871867

872868
/// <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.
875870
/// </summary>
876871
/// <param name="outer">The first sequence to join.</param>
877872
/// <param name="inner">The sequence to join to the first sequence.</param>
@@ -984,8 +979,7 @@ public static IQueryable<TResult> RightJoin<TOuter, TInner, TKey, TResult>(this
984979
}
985980

986981
/// <summary>
987-
/// 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.
989983
/// </summary>
990984
/// <param name="outer">The first sequence to join.</param>
991985
/// <param name="inner">The sequence to join to the first sequence.</param>

‎src/libraries/System.Linq/src/System/Linq/Join.cs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ namespace System.Linq
88
publicstaticpartialclassEnumerable
99
{
1010
/// <summary>
11-
/// Correlates the elements of two sequences based on matching keys.
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.
1312
/// </summary>
1413
/// <param name="outer">The first sequence to join.</param>
1514
/// <param name="inner">The sequence to join to the first sequence.</param>
@@ -112,8 +111,7 @@ public static IEnumerable<TResult> Join<TOuter, TInner, TKey, TResult>(this IEnu
112111
Join(outer,inner,outerKeySelector,innerKeySelector,resultSelector,comparer:null);
113112

114113
/// <summary>
115-
/// Correlates the elements of two sequences based on matching keys.
116-
/// The default equality comparer is used to compare keys.
114+
/// Correlates the elements of two sequences based on matching keys. A specified <see cref="IEqualityComparer{T}" /> is used to compare keys.
117115
/// </summary>
118116
/// <param name="outer">The first sequence to join.</param>
119117
/// <param name="inner">The sequence to join to the first sequence.</param>

‎src/libraries/System.Linq/src/System/Linq/LeftJoin.cs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ namespace System.Linq
88
publicstaticpartialclassEnumerable
99
{
1010
/// <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.
1312
/// </summary>
1413
/// <param name="outer">The first sequence to join.</param>
1514
/// <param name="inner">The sequence to join to the first sequence.</param>
@@ -111,8 +110,7 @@ public static IEnumerable<TResult> LeftJoin<TOuter, TInner, TKey, TResult>(this
111110
LeftJoin(outer,inner,outerKeySelector,innerKeySelector,resultSelector,comparer:null);
112111

113112
/// <summary>
114-
/// 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.
116114
/// </summary>
117115
/// <param name="outer">The first sequence to join.</param>
118116
/// <param name="inner">The sequence to join to the first sequence.</param>

‎src/libraries/System.Linq/src/System/Linq/RightJoin.cs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ namespace System.Linq
88
publicstaticpartialclassEnumerable
99
{
1010
/// <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.
1312
/// </summary>
1413
/// <param name="outer">The first sequence to join.</param>
1514
/// <param name="inner">The sequence to join to the first sequence.</param>
@@ -110,8 +109,7 @@ public static IEnumerable<TResult> RightJoin<TOuter, TInner, TKey, TResult>(this
110109
RightJoin(outer,inner,outerKeySelector,innerKeySelector,resultSelector,comparer:null);
111110

112111
/// <summary>
113-
/// 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.
115113
/// </summary>
116114
/// <param name="outer">The first sequence to join.</param>
117115
/// <param name="inner">The sequence to join to the first sequence.</param>

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp