CSystemTextJson
CSystemTextJson, commonly referred to as System.Text.Json, is a high-performance JSON library for the .NET platform. It provides APIs to read, write, deserialize, and serialize JSON data with a focus on speed and low memory usage. It is part of the base class library introduced with .NET Core 3.0.
Core API access is centered on JsonSerializer for high-level serialization and deserialization, and on streaming helpers
Performance and adoption are hallmarks of System.Text.Json. The library is optimized for speed and reduced allocations,
Features and capabilities include support for custom converters, the JsonInclude attribute to include non-public members, and
History and scope: System.Text.Json was introduced with .NET Core 3.0 as a built-in alternative to Json.NET for