... allocated tables of objects... QuoteI meant "arrays of objects".
I meant "arrays of objects".
var Arr2: array of MyClass;... SetLength(Arr2, 10); for I := 0 to 9 do Arr2[I] := MyClass.Create; SetLength(Arr2[0].Arr, 10); Arr2[0].Arr[0] := 'Hello world'; ...