Enumerable.SkipLast<TSource>(IEnumerable<TSource>, Int32) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
傳回新的可列舉集合,其包含已省略來源集合最後 count
元素的所有 source
元素。
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static System::Collections::Generic::IEnumerable<TSource> ^ SkipLast(System::Collections::Generic::IEnumerable<TSource> ^ source, int count);
public static System.Collections.Generic.IEnumerable<TSource> SkipLast<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, int count);
static member SkipLast : seq<'Source> * int -> seq<'Source>
<Extension()>
Public Function SkipLast(Of TSource) (source As IEnumerable(Of TSource), count As Integer) As IEnumerable(Of TSource)
類型參數
- TSource
可列舉集合中專案的型別。
參數
- source
- IEnumerable<TSource>
可列舉集合執行個體。
- count
- Int32
要從集合末端移除的元素數。
傳回
IEnumerable<TSource>
新的可列舉集合,其包含從集合末端減去 count
元素的所有 source
元素。
例外狀況
source
為 null
。
備註
如果 count
不是正數,這個方法會傳回可列舉集合的 source
相同複本。