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

定義

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

public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
 static System::Collections::Generic::IEnumerable<TSource> ^ Skip(System::Collections::Generic::IEnumerable<TSource> ^ source, int count);
public static System.Collections.Generic.IEnumerable<TSource> Skip<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, int count);
static member Skip : seq<'Source> * int -> seq<'Source>
<Extension()>
Public Function Skip(Of TSource) (source As IEnumerable(Of TSource), count As Integer) As IEnumerable(Of TSource)

類型參數

TSource

source 項目的類型。

參數

source
IEnumerable<TSource>

傳回項目的 IEnumerable<T>

count
Int32

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

傳回

IEnumerable<TSource>

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

例外狀況

sourcenull

範例

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

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
*/
' Create an array of integers that represent grades.
Dim grades() As Integer = {59, 82, 70, 56, 92, 98, 85}

' Sort the numbers in descending order and
' get all but the first (largest) three numbers.
Dim skippedGrades As IEnumerable(Of Integer) =
grades _
.Skip(3)

' Display the results.
Dim output As New System.Text.StringBuilder("All grades except the first three are:" & vbCrLf)
For Each grade As Integer In skippedGrades
    output.AppendLine(grade)
Next
Console.WriteLine(output.ToString())

' This code produces the following output:
'
' All grades except the first three are:
' 56
' 92
' 98
' 85

備註

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

如果 source 包含小於 count 元素,則會傳回空 IEnumerable<T> 的 。 如果 count 小於或等於零,則會產生 的所有 元素 source

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

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

適用於

另請參閱