Enumerable.TakeLast<TSource>(IEnumerable<TSource>, Int32) 方法
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
傳回新的可列舉集合,其包含 source
的最後 count
元素。
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static System::Collections::Generic::IEnumerable<TSource> ^ TakeLast(System::Collections::Generic::IEnumerable<TSource> ^ source, int count);
C#
public static System.Collections.Generic.IEnumerable<TSource> TakeLast<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, int count);
static member TakeLast : seq<'Source> * int -> seq<'Source>
<Extension()>
Public Function TakeLast(Of TSource) (source As IEnumerable(Of TSource), count As Integer) As IEnumerable(Of TSource)
- TSource
可列舉集合中專案的型別。
- source
- IEnumerable<TSource>
可列舉集合執行個體。
- count
- Int32
要從集合末端移除的元素數。
IEnumerable<TSource>
傳回新的可列舉集合,其包含 source
的最後 count
元素。
source
為 null
。
如果 count
不是正數,這個方法會傳回空的可列舉集合。
產品 | 版本 |
---|---|
.NET | Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9 |
.NET Standard | 2.1 |