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()?

Comments

  1. I am talking about a flexible interface, see examples in description:
    github.com - hgourvest/superobject

    ReplyDelete
  2. No, there is no such thing.

    If 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.

    ReplyDelete

Post a Comment