About 230,000 results
Open links in new tab
  1. Serialization - .NET | Microsoft Learn

    Oct 25, 2023 · This article provides information about .NET serialization technologies, including binary serialization, XML and SOAP serialization, and JSON serialization.

  2. 序列化 - .NET | Microsoft Learn

    2 days ago · 参考文献 System.Text.Json 包含可用于将对象序列化为 JSON 格式文档或流的类。 System.Runtime.Serialization 包含可用于序列化和反序列化对象的类。 …

  3. Serialization - Framework Design Guidelines | Microsoft Learn

    Nov 17, 2022 · Serialization is the process of converting an object into a format that can be readily persisted or transported. For example, you can serialize an object, transport it over the internet …

  4. Examples of XML Serialization - .NET | Microsoft Learn

    Mar 17, 2023 · The following code examples address various advanced scenarios, including how to use XML serialization to generate an XML stream that conforms to a specific XML Schema …

  5. Serialization - Visual Basic | Microsoft Learn

    Dec 21, 2022 · Serialization is the process of converting an object into a stream of bytes in order to store the object or transmit it to memory, a database, or a file. Its main purpose is to save …

  6. How to serialize JSON in C# - .NET | Microsoft Learn

    Feb 11, 2025 · Serialization behavior By default, all public properties are serialized. You can specify properties to ignore. You can also include private members. The default encoder …

  7. JSON serialization and deserialization in .NET - overview

    Jan 29, 2025 · Serialization is the process of converting the state of an object, that is, the values of its properties, into a form that can be stored or transmitted. The serialized form doesn't …

  8. Respect nullable annotations - .NET | Microsoft Learn

    Oct 24, 2024 · Learn how to configure serialization and deserialization to respect nullable annotations.

  9. Serialization in MFC | Microsoft Learn

    Aug 2, 2021 · This article explains the serialization mechanism provided in the Microsoft Foundation Class Library (MFC) to allow objects to persist between runs of your program. …

  10. How to deserialize JSON in C# - .NET | Microsoft Learn

    Feb 11, 2025 · WeatherForecast deserializedWeatherForecast = JsonSerializer.Deserialize<WeatherForecast>(ref utf8Reader)!; ' This code example doesn't …