在VB.NET中实现索引

时间:2011-02-16 14:47:10

标签: .net vb.net

Public Class IndexableLinkedList(Of T)
  Inherits LinkedList(Of T)

 '??? implement an index 'property' '

End Class

1 个答案:

答案 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

也就是说,使用与链表相关联的索引器可能不是一个好主意,性能方面。