Gets an item from the array by index.
Syntax
'Declaration
Public Default Property Item( _
ByVal As Integer _
) As
'Usage
Dim instance As NativeObjectArray(Of T,TParentType)
Dim index As Integer
Dim value As
instance.Item(index) = value
value = instance.Item(index)
public this[
int
]; {get; set;}
public: __property get_Item int
;
public: __property void set_Item int ,
;
public:
property default [int] {
get(int );
void set (int , value);
}
Parameters
- index
- The index of the item to retrieve.
See Also