gpt4 book ai didi

c# - System.Text.Json 中 Newtonsoft.Json 的 JsonProperty 属性的等效项是什么?

转载 作者:行者123 更新时间:2023-12-02 02:47:12 24 4
gpt4 key购买 nike

System.Text.Json 中 Newtonsoft.Json 的 JsonProperty 属性的等效项是什么?

示例:

using Newtonsoft.Json;

public class Example
{
[JsonProperty("test2")]
public string Test { get; set; }
}

引用文献:

最佳答案

以防万一,其他人也会因此而摔倒。该属性已重命名为 JsonPropertyName,来自 System.Text.Json nuget 包中的 System.Text.Json.Serialization

示例:

using System.Text.Json.Serialization;

public class Example
{
[JsonPropertyName("test2")]
public string Test { get; set; }
}

引用文献:

关于c# - System.Text.Json 中 Newtonsoft.Json 的 JsonProperty 属性的等效项是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58475629/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com