是否有支持泛型的Delphi对象序列化库?

mjn*_*mjn 7 xml delphi generics serialization json

我所知道的所有开源对象序列化库(JvAppStorage,NativeXml,OmniXML,SuperObject,lkJSON)似乎都不支持Generics属性.(如果我错了,请纠正我).

你知道有这个功能或计划添加它的图书馆吗?如何在Delphi 2010中使用JSON序列化库(我仍在使用Delphi 2009)

...
published
  property Prop1: TObjectList<TMyPersistent> read GetProp1 write SetProp1;
...
Run Code Online (Sandbox Code Playgroud)

Tri*_*enT 2

看看我在这篇文章中使用JCL/JVCL 序列化器的简单解决方案:
如何使用 TJvAppXMLFileStorage 将 Delphi TObjectList<TMyClass> 类型序列化为 XML?