OfTypeExtensionElementAt Method |
Override LINQ for faster access
Namespace:
VelocityDb
Assembly:
VelocityDb (in VelocityDb.dll) Version: 11.1.0.0 (11.1)
Syntax public static Object ElementAt(
this OfType source,
int index
)
<ExtensionAttribute>
Public Shared Function ElementAt (
source As OfType,
index As Integer
) As Object
public:
[ExtensionAttribute]
static Object^ ElementAt(
OfType^ source,
int index
)
[<ExtensionAttribute>]
static member ElementAt :
source : OfType *
index : int -> Object
Parameters
- source
- Type: VelocityDbOfType
The source enumeration - index
- Type: SystemInt32
The index requested
Return Value
Type:
ObjectElement at requested index
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