C#列表定义中的冒号

时间:2014-10-22 20:31:22

标签: c# json.net

我必须反序列化在根对象名中包含冒号的JSON对象数组。

有人知道我是否可以在列表定义中使用冒号以某种方式实现此目的?

public List<Customers> ngcp:customers { get; set; }

1 个答案:

答案 0 :(得分:5)

不,正确的方法是使用json.net支持的属性或其他方法指定名称。

[JsonProperty(PropertyName = "ngcp:customers")]
public List<Customers> Customers { get; set; }

LINQPad example