『 再看.NET7』让json序列化体现多态
📝
内容提要
从System.Text.Json诞生,就在努力增加功能和提升性能,在.NET7中,又带来了多态的适配。下面是一个父类Customer,两个子类,WechatCustomer和LineCustomer。public class Customer { public string Name { get; set; } public string Address { get; set; ...
➡️