ObjectModel.Collection(Of t)

Can someone explain when to use ObjectModel.Collection(Of t) as a base class over CollectionBase?

I have been working with ObjectModel.Collection(Of t) as my base class, and everything seem to work just fine. The only snag that I have ran into so far is how to implement a Sort method for thederivedclass.
Thank you, Isaiah D. Williams
vbCity Leader, http://www.vbCity.com
Microsoft VB MVP

[491 byte] By [Isaiah] at [2008-1-28]
# 1
The Collection(Of T) class allows you provide your own storage for the collection in the constructor, whereas the CollectionBase always uses an ArrayList.

To sort a derived class, simply pass an instance of an ArrayList or List(Of T) as the storage for the Collection(of T) and use the Sort methods on that instance.

DavidM.Kean at 2007-8-21 > top of Msdn Tech,Visual Basic,Visual Basic General...