Thursday, August 30, 2007

Declaring indexed properties in vb

' Default Indexed Property
Public Default ReadOnly Property DefaultProperty(Name As String) As String
Get
Return CStr(lookuptable(name))
End Get
End Property

No comments: