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
While counter-intuitive, PLINQ's LongCount() only supports values up to Int32.MaxValue, as do the rest of PLINQ's operators. This is not something that's planned to change.
Copy file name to clipboardExpand all lines: xml/System.Linq/ParallelEnumerable.xml
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -4673,8 +4673,8 @@
4673
4673
<exception cref="T:System.OperationCanceledException">The query was canceled with the token passed in through <paramref name="WithCancellation" />.</exception>
4674
4674
<exception cref="T:System.ArgumentNullException">
4675
4675
<paramref name="source" /> is a null reference (Nothing in Visual Basic).</exception>
4676
-
<exception cref="T:System.AggregateException">The number of elements in source is larger than <see cref="F:System.Int64.MaxValue" />. -or- One or more exceptions occurred during the evaluation of the query.</exception>
4677
-
<exception cref="T:System.OverflowException">The computed result is greater than <see cref="F:System.Int64.MaxValue" />.</exception>
4676
+
<exception cref="T:System.AggregateException">The number of elements in source is larger than <see cref="F:System.Int32.MaxValue" />. -or- One or more exceptions occurred during the evaluation of the query.</exception>
4677
+
<exception cref="T:System.OverflowException">The computed result is greater than <see cref="F:System.Int32.MaxValue" />.</exception>
<exception cref="T:System.OperationCanceledException">The query was canceled with the token passed in through <paramref name="WithCancellation" />.</exception>
4723
4723
<exception cref="T:System.ArgumentNullException">
4724
4724
<paramref name="source" /> or <paramref name="predicate" /> is a null reference (Nothing in Visual Basic).</exception>
4725
-
<exception cref="T:System.AggregateException">The number of elements in source is larger than <see cref="F:System.Int64.MaxValue" />. -or- One or more exceptions occurred during the evaluation of the query.</exception>
4726
-
<exception cref="T:System.OverflowException">The computed result is greater than <see cref="F:System.Int64.MaxValue" />.</exception>
4725
+
<exception cref="T:System.AggregateException">The number of elements in source is larger than <see cref="F:System.Int32.MaxValue" />. -or- One or more exceptions occurred during the evaluation of the query.</exception>
4726
+
<exception cref="T:System.OverflowException">The computed result is greater than <see cref="F:System.Int32.MaxValue" />.</exception>
0 commit comments