Skip to content

PonyPC/DelphiJsonHelper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 

Repository files navigation

DelphiJsonHelper

Simplify json usage on delphi 10.1 and above

  var
  JSON := TJsonObject.Create;
  if JSON.Load('{"a":[0,1], "b":"Hello"}') then
  begin
    JSON.StrP['c.d.e'] := '...';
    JSON.BoolP['a[0].ff'] := false;
    showmessage(JSON.Dump);
  end;

About

Simplify json usage on delphi 10.1 and above

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages