Enumerable.Skip<TSource>(IEnumerable<TSource>, Int32) Metodo
Definizione
Ignora un numero specificato di elementi in una sequenza e quindi restituisce gli elementi rimanenti.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)
Parametri di tipo
- TSource
Tipo degli elementi di source
.The type of the elements of source
.
Parametri
- source
- IEnumerable<TSource>
Oggetto IEnumerable<T> dal quale restituire elementi.An IEnumerable<T> to return elements from.
- count
- Int32
Il numero di elementi da ignorare prima di restituire gli elementi rimanenti.The number of elements to skip before returning the remaining elements.
Restituisce
- IEnumerable<TSource>
Oggetto IEnumerable<T> che contiene gli elementi presenti dopo l'indice specificato nella sequenza di input.An IEnumerable<T> that contains the elements that occur after the specified index in the input sequence.
Eccezioni
source
è null
.source
is null
.
Esempio
Nell'esempio di codice riportato di seguito viene illustrato come utilizzare Skip per ignorare un numero specificato di elementi in una matrice ordinata e restituire gli elementi rimanenti.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
Commenti
Questo metodo viene implementato tramite l'esecuzione posticipata.This method is implemented by using deferred execution. Il valore restituito immediato è un oggetto che archivia tutte le informazioni necessarie per eseguire l'azione.The immediate return value is an object that stores all the information that is required to perform the action. La query rappresentata da questo metodo non viene eseguita finché l'oggetto non viene enumerato chiamando il relativo GetEnumerator
metodo direttamente o utilizzando foreach
in Visual C# o For Each
in 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.
Se source
contiene meno di count
elementi, viene restituito un oggetto vuoto IEnumerable<T> .If source
contains fewer than count
elements, an empty IEnumerable<T> is returned. Se count
è minore o uguale a zero, vengono ceduti tutti gli elementi di source
.If count
is less than or equal to zero, all elements of source
are yielded.
I Take Skip metodi e sono complementi funzionali.The Take and Skip methods are functional complements. Data una sequenza coll
e un integer n
, la concatenazione dei risultati di coll.Take(n)
e coll.Skip(n)
produce la stessa sequenza di 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
.
In Visual Basic sintassi delle espressioni di query una Skip
clausola viene convertita in una chiamata di Skip .In Visual Basic query expression syntax, a Skip
clause translates to an invocation of Skip.