Enumerable.Skip<TSource>(IEnumerable<TSource>, Int32) 方法

定義

略過序列中指定的項目數目,然後傳回其餘項目。

C#
public static System.Collections.Generic.IEnumerable<TSource> Skip<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, int count);

類型參數

TSource

source 項目的類型。

參數

source
IEnumerable<TSource>

傳回項目的 IEnumerable<T>

count
Int32

傳回其餘項目之前要略過的項目數目。

傳回

IEnumerable<TSource>

IEnumerable<T>,其中包含出現在輸入序列中指定之索引後面的項目。

例外狀況

sourcenull

範例

下列程式代碼範例示範如何使用 Skip 略過陣列中的指定項目數目,並傳回其餘元素。

C#
int[] grades = { 59, 82, 70, 56, 92, 98, 85 };

Console.WriteLine("All grades except the first three:");
foreach (int grade in grades.Skip(3))
{
    Console.WriteLine(grade);
}

/*
 This code produces the following output:

All grades except the first three:
 56
 92
 98
 85
*/

備註

這個方法是使用延後執行來實作。 立即傳回值是一個物件,會儲存執行動作所需的所有資訊。 除非直接呼叫其 GetEnumerator 方法或在 C# 或 foreachFor Each Visual Basic 中使用 來列舉對象,否則不會執行這個方法所代表的查詢。

如果 source 包含的項目少於 count ,則會傳回空 IEnumerable<T> 的 。 如果 count 小於或等於零,則會產生 的所有專案 source

TakeSkip 方法是功能補充。 給定集合序列coll和整數 n,串連 和 coll.Skip(n) 的結果coll.Take(n)會產生與 相同的序列coll

在 Visual Basic 查詢表達式語法中, Skip 子句會轉譯為的 Skip調用。

適用於

產品 版本
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.0, 1.1, 1.2, 1.3, 1.4, 1.6, 2.0, 2.1
UWP 10.0

另請參閱