Delphi and JSON
Delphi and JSON
Is there an overlay (eg in the form of a helper) for the JSON classes built into Delphi (System.JSON), which offered an interface similar to SuperObject, i.e. methods like json.S(), json.I(), json.A()?
Is there an overlay (eg in the form of a helper) for the JSON classes built into Delphi (System.JSON), which offered an interface similar to SuperObject, i.e. methods like json.S(), json.I(), json.A()?
I am talking about a flexible interface, see examples in description:
ReplyDeletegithub.com - hgourvest/superobject
No, there is no such thing.
ReplyDeleteIf you are thinking about replacing existing code that uses SuperObject with Delphi build in JSON library, you have another problem on desktop - non-ARC compiler. SuperObject classes are interface based (reference counted) and Delphi JSON is class based - non ref-counted.