You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I had the same problem. I solved it by creating an "override" of the stringify method in TJsonObject and TJsonArray. I'll attach the code below since I don't have the availability to create a pull request.
Json := TJson.Create();
Json['field6'].AsString := 'hello world';
writeln(Json.Stringify());
This simple code should produce a string
{"field6" : "hello world"}
??
If so it is not what is happening using Delphi XE7. An empty string is the result.
The text was updated successfully, but these errors were encountered: