OfTypeExtensionSkip Method |
Bypasses a specified number of elements in a sequence and then returns the remaining elements.
Namespace:
VelocityDb
Assembly:
VelocityDb (in VelocityDb.dll) Version: 11.1.0.0 (11.1)
Syntax public static IEnumerable Skip(
this OfType source,
int count
)
<ExtensionAttribute>
Public Shared Function Skip (
source As OfType,
count As Integer
) As IEnumerable
public:
[ExtensionAttribute]
static IEnumerable^ Skip(
OfType^ source,
int count
)
[<ExtensionAttribute>]
static member Skip :
source : OfType *
count : int -> IEnumerable
Parameters
- source
- Type: VelocityDbOfType
The Type being extended - count
- Type: SystemInt32
The number of elements to skip before returning the remaining elements.
Return Value
Type:
IEnumerableAn
IEnumerable that 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
OfType. 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