试用新的System.Text.Json API
2021-01-07 18:30
标签:json logs api herf style targe options pre blank https://devblogs.microsoft.com/dotnet/try-the-new-system-text-json-apis/ 对于所有示例,请确保导入以下两个名称空间: 反序列化 试用新的System.Text.Json API 标签:json logs api herf style targe options pre blank 原文地址:https://www.cnblogs.com/imust2008/p/14236990.htmlusing System.Text.Json;
using System.Text.Json.Serialization;
范例class WeatherForecast
{
public DateTimeOffset Date { get; set; }
public int TemperatureC { get; set; }
public string Summary { get; set; }
}
string Serialize(WeatherForecast value)
{
return JsonSerializer.ToString
WeatherForecast Deserialize(string json)
{
var options = new JsonSerializerOptions
{
AllowTrailingCommas = true
};
return JsonSerializer.Parse
上一篇:C# 运算符集
下一篇:问:Redis为什么是单线程的
文章标题:试用新的System.Text.Json API
文章链接:http://soscw.com/index.php/essay/40764.html