Enumerable.Skip<TSource>(IEnumerable<TSource>, Int32) Metoda
Definice
Obchází zadaný počet prvků v sekvenci a vrátí zbývající prvky.Bypasses a specified number of elements in a sequence and then returns the remaining elements.
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)
Parametry typu
- TSource
Typ prvků source .The type of the elements of source.
Parametry
- source
- IEnumerable<TSource>
IEnumerable<T>A vrátí prvky z.An IEnumerable<T> to return elements from.
- count
- Int32
Počet prvků, které se mají přeskočit před vrácením zbývajících prvkůThe number of elements to skip before returning the remaining elements.
Návraty
- IEnumerable<TSource>
Obsahující IEnumerable<T> prvky, které se vyskytnou po zadaném indexu ve vstupní sekvenci.An IEnumerable<T> that contains the elements that occur after the specified index in the input sequence.
Výjimky
source je null.source is null.
Příklady
Následující příklad kódu ukazuje, jak použít Skip k přeskočení zadaného počtu prvků v seřazeném poli a vrácení zbývajících prvků.The following code example demonstrates how to use Skip to skip a specified number of elements in a sorted array and return the remaining elements.
int[] grades = { 59, 82, 70, 56, 92, 98, 85 };
IEnumerable<int> lowerGrades =
grades.OrderByDescending(g => g).Skip(3);
Console.WriteLine("All grades except the top three are:");
foreach (int grade in lowerGrades)
{
Console.WriteLine(grade);
}
/*
This code produces the following output:
All grades except the top three are:
82
70
59
56
*/
' 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 lowerGrades As IEnumerable(Of Integer) =
grades _
.OrderByDescending(Function(g) g) _
.Skip(3)
' Display the results.
Dim output As New System.Text.StringBuilder("All grades except the top three are:" & vbCrLf)
For Each grade As Integer In lowerGrades
output.AppendLine(grade)
Next
Console.WriteLine(output.ToString())
' This code produces the following output:
'
' All grades except the top three are:
' 82
' 70
' 59
' 56
Poznámky
Tato metoda je implementována pomocí odloženého provedení.This method is implemented by using deferred execution. Okamžitá návratová hodnota je objekt, který ukládá všechny informace, které jsou požadovány k provedení této akce.The immediate return value is an object that stores all the information that is required to perform the action. Dotaz reprezentovaný touto metodou není proveden, dokud se nevytvoří výčet objektu buď voláním GetEnumerator metody přímo nebo pomocí foreach jazyka Visual C# nebo For Each Visual Basic.The query represented by this method is not executed until the object is enumerated either by calling its GetEnumerator method directly or by using foreach in Visual C# or For Each in Visual Basic.
Pokud source obsahuje méně než count elementy, IEnumerable<T> je vrácena prázdná.If source contains fewer than count elements, an empty IEnumerable<T> is returned. Pokud count je menší nebo rovno nule, source jsou vypočítány všechny prvky.If count is less than or equal to zero, all elements of source are yielded.
TakeMetody a Skip jsou funkční příplatnou.The Take and Skip methods are functional complements. S ohledem na sekvenci coll a celé číslo n , zřetězení výsledků coll.Take(n) a vrátí coll.Skip(n) stejnou sekvenci jako coll .Given a sequence coll and an integer n, concatenating the results of coll.Take(n) and coll.Skip(n) yields the same sequence as coll.
V Visual Basic syntaxe výrazu dotazu se Skip klauzule převede na vyvolání Skip .In Visual Basic query expression syntax, a Skip clause translates to an invocation of Skip.