Is there a JSON Library that works like the System.Xml.Linq classes?
-
Hello! We got this project that requires us to build data structures into a hierachical text structure ( like xml, or json). When i search for json and .net, the libraries i find seem to be really good for serializing. But serializing isn't what i need. I need something like the System.Xml.Linq.XElement class. Just create a node and put other nodes inside. Supersimple. I will try the most common libraries out there of course, but i would love to hear your experiences with it. Have you done something like that? Do yoo have recommendations for me?
-
Hello! We got this project that requires us to build data structures into a hierachical text structure ( like xml, or json). When i search for json and .net, the libraries i find seem to be really good for serializing. But serializing isn't what i need. I need something like the System.Xml.Linq.XElement class. Just create a node and put other nodes inside. Supersimple. I will try the most common libraries out there of course, but i would love to hear your experiences with it. Have you done something like that? Do yoo have recommendations for me?
Json.NET has support for LINQ to JSON. Providing you aren't looking to do anything mind blowingly complex, this should help. Introduction[^]
This space for rent