.NET 4 In the environment, no external DLL C#object JSON serialization method
This article discusses how to sequence C#objects into JSON string under the .NET 4 framework, especially LAD objects containing the noodle attribute. The focus is on the solution that seeks compatible .NET 4 and does not need to rely on external DLL.
solution based on json.net
The commonly used solution is to use the NewtonSoft JSON library. Newtonsoft.json.jsonconvert.serializeObject method can easily convert the object into a JSON string containing a complex nested structure, as shown below:
The generated JSON string will contain nested Dateofbns properties to meet the expected output.
<code class="language-csharp">Newtonsoft.Json.JsonConvert.SerializeObject(new { firstName = "Markoff", lastName = "Chaney", dateOfBirth = new { year = 1901, month = 4, day = 30 } });</code>
Related documents
For more details about JSON serialization and back -sequentialization, please refer to the following documents:
JSON serialization and desertation
The above is the detailed content of How to Serialize C# Objects to JSON in .NET 4 without External DLLs?. For more information, please follow other related articles on the PHP Chinese website!