Studying TClassList yesterday, thisd may be a stupid question. There's not much info to find on the net.
but how can I access and change a class in the list?


[pascal]
type
TTest = Class

//

end;

var
Test1 : TTest;
TestList : TClassList;

[/pascal]

setup and creating items in the TClassList are OK.
But- items of TClassList are of TClass, so how can I f.e. assign test1 to an item of the list.