Post by BrianIs there a way to create a list of a certain type of items?
myList : TList<myClass>
If you want a list in which you have activities both on the list as a
whole, & on individual members of the list, then use descendants of
the TCollection / TCollectionItem pair. These two classes incorporate
a TList and the interactions of creating, indexing & accessing the
elements of the list.
They are used internally by Delphi in many cases.
Alan Lloyd