Visual Basic (Declaration)
<ExtensionAttribute> _
Public Shared Function Skip(Of TSource) ( _
source As IQueryable(Of TSource), _
count As Integer _
) As IQueryable(Of TSource)
Dim source As IQueryable(Of TSource)
Dim count As Integer
Dim returnValue As IQueryable(Of TSource)
returnValue = source.Skip(count)
public static IQueryable<TSource> Skip<TSource>(
this IQueryable<TSource> source,
int count
)
[ExtensionAttribute]
public:
generic<typename TSource>
static IQueryable<TSource>^ Skip(
IQueryable<TSource>^ source,
int count
)
JScript does not support generic types or methods.
Type Parameters
- TSource
-
The type of the elements of source.
Parameters
- source
- Type: System.Linq..::.IQueryable<(Of <(TSource>)>)
An IQueryable<(Of <(T>)>) to return elements from.
- count
- Type: System..::.Int32
The number of elements to skip before returning the remaining elements.
Return Value
Type:
System.Linq..::.IQueryable<(Of <(TSource>)>) An IQueryable<(Of <(T>)>) that contains elements that occur after the specified index in the input sequence.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IQueryable<(Of <(TSource>)>). When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).