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
Update Enumerable.xml to remove unexpected ) characters (#10192)
Update to remove unexpected `)` characters from "This method can be used to produce a left outer join when it is combined with the GroupJoin) method." instances.
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
@@ -2976,7 +2976,7 @@ Each chunk except the last one will be of size `size`. The last chunk will conta
2976
2976
2977
2977
The default value for reference and nullable types is `null`.
2978
2978
2979
-
This method can be used to produce a left outer join when it is combined with the <xref:System.Linq.Enumerable.GroupJoin%2A>) method.
2979
+
This method can be used to produce a left outer join when it is combined with the <xref:System.Linq.Enumerable.GroupJoin%2A> method.
2980
2980
2981
2981
## Examples
2982
2982
The following code examples demonstrate how to use <xref:System.Linq.Enumerable.DefaultIfEmpty%60%601%28System.Collections.Generic.IEnumerable%7B%60%600%7D%29> to provide a default value in case the source sequence is empty.
@@ -3060,7 +3060,7 @@ Each chunk except the last one will be of size `size`. The last chunk will conta
3060
3060
## Remarks
3061
3061
This method is implemented by using deferred execution. The immediate return value is an object that stores all the information that is required to perform the action. The query represented by this method is not executed until the object is enumerated either by calling its `GetEnumerator` method directly or by using `foreach` in C# or `For Each` in Visual Basic.
3062
3062
3063
-
This method can be used to produce a left outer join when it is combined with the <xref:System.Linq.Enumerable.GroupJoin%2A>) method.
3063
+
This method can be used to produce a left outer join when it is combined with the <xref:System.Linq.Enumerable.GroupJoin%2A> method.
3064
3064
3065
3065
## Examples
3066
3066
The following code example demonstrates how to use the <xref:System.Linq.Enumerable.DefaultIfEmpty%60%601%28System.Collections.Generic.IEnumerable%7B%60%600%7D%2C%60%600%29> method and specify a default value. The first sequence is not empty and the second sequence is empty.
0 commit comments