gpt4 book ai didi

c# - 使用 setter 方法的 Json.Net 反序列化

转载 作者:行者123 更新时间:2023-11-30 16:26:53 25 4
gpt4 key购买 nike

使用以下示例是否可以在反序列化期间使用 Json.Net 中的 AddChild Setter 方法来填充子项列表?

public class Foo
{
private IList<Foo> _children;
private Foo _parent;

public Foo()
{
_children = new List<Foo>();
}

public string Name { get; set; }
public IEnumerable<Foo> Children
{
get { return _children.AsEnumerable() }
}

public void AddChild(Foo child)
{
child._parent = this;
_children.Add(child);
}
}

最佳答案

您可以通过创建 JsonConverter 类的具体实现来添加自定义类型转换器。

关于c# - 使用 setter 方法的 Json.Net 反序列化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8330266/

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