Top "Tobjectlist" questions

Delphi class for a list of objects

Delphi: how to use TObjectList<T>?

I need to understand how to use the generic Delphi 2009 TObjectList. My non-TObjectList attempt looked like TSomeClass = class(TObject) private …

delphi generics tobjectlist
Delphi Remove an object from a TObjectList

I have a TObject list (FileEventObjects := TObjectList.Create(True);) containing one or more objects. The objects need to stay in …

delphi tobjectlist
Delphi trouble: Sorting a Tobjectlist<>

I 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