从 Newtonsoft.Json 迁移到 System.Text.Json

作者:outlela  来源:本站原创   发布时间:2024-10-17 10:59:26

对应关系说明:

JsonNode: JSON 文档中的一个节点,对应 Newtonsoft.Json 里的 JToken

JsonObject: JSON 对象,对应 Newtonsoft.Json 里的 JObject

JsonArray: JSON 数组,对应 Newtonsoft.Json 里的 JArray

JsonValue: JSON 中的一个值,对应 Newtonsoft.Json 里的 JValue


对应方法说明:

序列化: JsonSerializer.Serialize  对应 JsonConvert.SerializeObject(value)

               JsonSerializer.Deserialize<>() 对应 JsonConvert.DeserializeObject<>()

*本文最后修改于:2024-10-17 11:6:17
本文由本站原创发布, 本文链接地址:https://outlela.com/share/198.html
转载或引用请保留地址并注明出处:outlela.com