试用新的System.Text.Json API

2021-01-07 18:30

阅读:514

标签:json   logs   api   herf   style   targe   options   pre   blank   

https://devblogs.microsoft.com/dotnet/try-the-new-system-text-json-apis/

对于所有示例,请确保导入以下两个名称空间:

using 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(value);
}

 反序列化

WeatherForecast Deserialize(string json)
{
    var options = new JsonSerializerOptions
    {
        AllowTrailingCommas = true
    };

    return JsonSerializer.Parse(json, options);
}

 

 

试用新的System.Text.Json API

标签:json   logs   api   herf   style   targe   options   pre   blank   

原文地址:https://www.cnblogs.com/imust2008/p/14236990.html


评论


亲,登录后才可以留言!