对应关系说明:
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<>()