Item Property (CollectionBase<T>)
Gets or sets the at the specified index in the collection.
public this[
int
]; {get; set;}
'Declaration
Public Default Property Item( _
ByVal As Integer _
) As
'Usage
Dim instance As CollectionBase(Of T)
Dim index As Integer
Dim value As T
instance.Item(index) = value
value = instance.Item(index)
Parameters
- index
- The zero-based index of the collection to access.
Property Value
A at each valid index.