I have a collection which I wish to use as a databinding source. Therefore in the collection I have:
VB Code:
  1. Public Class MyTypedCollection
  2.  
  3.     Inherits Collections.DictionaryBase
  4.     Implements ITypedList
  5.  
  6. End Class

But ITypedList has two required functions and I really don't understand the documentation...what should go in:
VB Code:
  1. Function GetListName(ByVal listAccessors() As PropertyDescriptor) As String Implements ITypedList.GetListName
  2.         '\\ what goes here?
  3.     End Function
  4.  
  5.     Function GetItemProperties(ByVal listAccessors() As PropertyDescriptor) As PropertyDescriptorCollection Implements ITypedList.GetItemProperties
  6.         '\\ What goes here as well?
  7.     End Function