Le proprietà possono essere indicizzare con un parametro, ad esempio:
codice:
Public Property Item(ByVal Index As Int32) As String
  Get
    Return Me.Lista.Item(Index)
  End Get
  Set(ByVal Value As String)
    Me.Lista.Item(Index) = Value
  End Set
End Property