Public Class IndexableLinkedList(Of T)
Inherits LinkedList(Of T)
'??? implement an index 'property' '
End Class
答案 0 :(得分:4)
您可能(?)寻找的信息是索引器属性需要标记为Default
:
Public Default Property Item(ByVal index As Integer) As T
Get
' Return something
End Get
Set(ByVal value As T)
' Set something
End Set
End Property
也就是说,使用与链表相关联的索引器可能不是一个好主意,性能方面。