About 250,000 results
Open links in new tab
  1. How to serialize JSON in C# - .NET | Microsoft Learn

    Learn how to serialize and deserialize JavaScript Object Notation (JSON) strings using the JsonSerializer class, the JsonSerializerOptions class, and Data Transfer Objects.

  2. What is deserialize and serialize in JSON? - Stack Overflow

    Jul 23, 2010 · JSON is a format that encodes objects in a string. Serialization means to convert an object into that string, and deserialization is its inverse operation (convert string -> object).

  3. Serializing and Deserializing JSON - Newtonsoft

    The quickest method of converting between JSON text and a .NET object is using the JsonSerializer. The JsonSerializer converts .NET objects into their JSON equivalent and back …

  4. Serialize and deserialize complex JSON in C# - CSharp Academy

    Nov 14, 2024 · In C#, handling complex JSON data structures—those with nested objects, arrays, and mixed data types—requires advanced serialization and deserialization techniques.

  5. JSON Serialization and Deserialization in C# - C# Corner

    In this article and code examples, we will first learn how to serialize JSON in C# and then how to deserialize JSON in C#. What is JSON? JSON (JavaScript Object Notation) is a lightweight …

  6. How to Serialize and Deserialize JSON in C#

    Mar 2, 2025 · Learn how to effectively serialize and deserialize JSON in C# using .NET's built-in methods. Discover best practices, handle complex objects, and improve your data …

  7. How to Serialize JSON in JavaScript ? - GeeksforGeeks

    Aug 5, 2025 · JSON (JavaScript Object Notation) serialization is a fundamental concept in JavaScript, allowing the conversion of JavaScript objects into strings that can be easily …

  8. JsonSerializer Class (System.Text.Json) | Microsoft Learn

    Provides functionality to serialize objects or value types to JSON and to deserialize JSON into objects or value types.

  9. Json.NET - Newtonsoft

    World-class JSON Serializer Serialize and deserialize any .NET object with Json.NET's powerful JSON serializer.

  10. JsonSerialization in C#: Step-by-Step Guide (2025) - ByteHide

    Dec 25, 2023 · Let’s buckle up and dive into the bedrock of Json Serialization – embracing the journey of transforming C# objects into JSON and vice versa. Along the way, we’ll parse …