AllObjectsExtensionSkipTSource Method |
Namespace:
VelocityDb
Assembly:
VelocityDb (in VelocityDb.dll) Version: 11.1.0.0 (11.1)
Syntax public static IEnumerable<TSource> Skip<TSource>(
this AllObjects<TSource> source,
int count
)
<ExtensionAttribute>
Public Shared Function Skip(Of TSource) (
source As AllObjects(Of TSource),
count As Integer
) As IEnumerable(Of TSource)
public:
[ExtensionAttribute]
generic<typename TSource>
static IEnumerable<TSource>^ Skip(
AllObjects<TSource>^ source,
int count
)
[<ExtensionAttribute>]
static member Skip :
source : AllObjects<'TSource> *
count : int -> IEnumerable<'TSource>
Parameters
- source
- Type: VelocityDbAllObjectsTSource
Source collection - count
- Type: SystemInt32
The number of elements to skip before returning the remaining elements.
Type Parameters
- TSource
- The type of the elements of source
Return Value
Type:
IEnumerableTSourceAn
IEnumerableTthat contains the 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
AllObjectsTSource. 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).
See Also