我必须反序列化在根对象名中包含冒号的JSON对象数组。
有人知道我是否可以在列表定义中使用冒号以某种方式实现此目的?
public List<Customers> ngcp:customers { get; set; }
答案 0 :(得分:5)
不,正确的方法是使用json.net支持的属性或其他方法指定名称。
[JsonProperty(PropertyName = "ngcp:customers")]
public List<Customers> Customers { get; set; }