An API to work with JSON objects.
This is the JSON I get from a request on .NET: { "id": "110355660738", "picture": { "data": { "url": "https://fbcdn-profile-a.akamaihd.net/hprofile-ak-prn2/1027085_12033235063_5234302342947_…
c# .net json linq linq-to-jsonConsider this code: var joWork = ((JObject) x).Properties() .Where(p => p.Value.Type == JTokenType.String).ToList(); I end up …
c# json.net linq-to-jsonI have a JObject with a JSON like it: {"name" : "user1", "groups" : ["group 1", "group2"]} I would like to delete one …
c# json linq-to-json