About 582,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. JSON - Wikipedia

    JSON (JavaScript Object Notation, pronounced / ˈdʒeɪsən / or / ˈdʒeɪˌsɒn /) is an open standard file format and data interchange format that uses human-readable text to store and transmit data objects …

    Missing:
    • serialization
    Must include:
  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 again by mapping the …

  4. 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).

  5. 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 transmitted over a …

  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 manipulation skills …

  7. 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.