I am using delphi 2009 and VCL components. I have created a collection called TStreets made of items TStreet which has just two private fields. Now I need to add to Tstreet class another field/property to keep track (by using reference) of other objects of class TMyObject.
An example: let's assume that TStreet collection contains five elements and ten objects (TMyObject) exists in my application at run-time. Each objects of TMyObject can belong to only one TStreet so I need to save for each TStreet all reference of objects and then be able to move one or more object reference from one TStreet to another. Should I create another colletion under TStreet where saving object references?
Is it correct the way to go?
TCollectionandTCollectionItem? Those classes are designed to help publish collections to the Object Inspector. Unless you actually want your Streets and YourObjects to be dropped on a form and manipulated at design time, you don't wantTCollection– Cosmin Prund Feb 14 '11 at 16:00TCollectionItemand having to takeTCollection's. rather designer-centric interface.TObjectListwould be my personal choice. – David Heffernan Feb 14 '11 at 17:43