Delphi class for a list of objects
I need to understand how to use the generic Delphi 2009 TObjectList. My non-TObjectList attempt looked like TSomeClass = class(TObject) private …
delphi generics tobjectlistI have a TObject list (FileEventObjects := TObjectList.Create(True);) containing one or more objects. The objects need to stay in …
delphi tobjectlistI want to sort my generic tobjectlist using the built-in sort method. here is what I do: //create the list …
delphi sorting generics delphi-2010 tobjectlist