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/Queryable.xml
+14-10Lines changed: 14 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -3133,14 +3133,16 @@ The last chunk will contain the remaining elements and may be of a smaller size.
3133
3133
</Parameter>
3134
3134
</Parameters>
3135
3135
<Docs>
3136
-
<typeparam name="TSource">To be added.</typeparam>
3137
-
<typeparam name="TKey">To be added.</typeparam>
3138
-
<param name="source">To be added.</param>
3139
-
<param name="keySelector">To be added.</param>
3140
-
<param name="comparer">To be added.</param>
3141
-
<summary>To be added.</summary>
3142
-
<returns>To be added.</returns>
3136
+
<typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
3137
+
<typeparam name="TKey">The type of key to distinguish elements by.</typeparam>
3138
+
<param name="source">The sequence to count elements from.</param>
3139
+
<param name="keySelector">A function to extract the key for each element.</param>
3140
+
<param name="comparer">An <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> to compare keys.</param>
3141
+
<summary>Returns the count of each element from a sequence according to a specified key selector function.</summary>
3142
+
<returns>An <see cref="T:System.Linq.IQueryable`1" /> that contains count for each distinct elements from the source sequence as a <see cref="T:System.Collections.Generic.KeyValuePair`2" /> object.</returns>
3143
3143
<remarks>To be added.</remarks>
3144
+
<exception cref="T:System.ArgumentNullException">
3145
+
<paramref name="source" /> is <see langword="null" />.</exception>
0 commit comments