wenn das geht, dann sollte das auch so gehn?
Delphi-Quellcode:
var PropList : PPropList;
AClass : TClass;
begin
AClass := TCustomClass;
PropCount := GetPropList(AClass.ClassInfo, PropList);
end;
// bzw.
var PropList : PPropList;
begin
PropCount := GetPropList(TCustomClass.ClassInfo, PropList);
end;