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
<param name="count">The number of elements to omit from the end of the collection.</param>
9573
+
<summary>Returns a new enumerable collection that contains the elements from <paramref name="source" /> with the last <paramref name="count" /> elements of the source collection omitted.</summary>
9574
+
<returns>A new enumerable collection that contains the elements from <paramref name="source" /> minus <paramref name="count" /> elements from the end of the collection.</returns>
9575
+
<remarks>
9576
+
<format type="text/markdown"><![CDATA[
9577
+
9578
+
## Remarks
9579
+
9580
+
If `count` is not a positive number, this method returns an identical copy of the `source` enumerable collection.
9581
+
9582
+
]]></format>
9583
+
</remarks>
9584
+
<exception cref="T:System.ArgumentNullException">
9585
+
<paramref name="source" /> is <see langword="null" />.</exception>
0 commit comments