Ach guck an, wie ist denn TList<T> in Delphi 11 definiert?
In 10.4 geht's so los:
Delphi-Quellcode:
TList<T> = class(TEnumerable<T>)
public type
arrayofT = array of T;
ParrayofT = ^arrayofT;
private var
FListHelper: TListHelper;
FComparer: IComparer<T>;
FOnNotify: TCollectionNotifyEvent<T>;
...