[SOLVED] Add JObject to JObject

Issue I have a json structure like this: var json = { “report”: {}, “expense”: {}, “invoices”: {}, “projects”: {}, “clients”: {}, “settings”: { “users”: {}, “companies”: {}, “templates”: {}, “translations”: {}, “license”: {}, “backups”: {}, } } I would

Continue reading

[SOLVED] How to Save Large Json Data?

Issue i have a large ObservableCollection that I want to get out as Json file. I used the following code, But I get an error out of memory string json = JsonConvert.SerializeObject(content, Formatting.Indented); await File.WriteAllTextAsync("file.json"); How can I save this

Continue reading