我从API获取此json格式:
"url_service": "",
"Description": null,
"Target": "5,6",
"Category ": "2"
我正在尝试将json反序列化为模型。问题出在“目标”字段,该字段应该是int的ICollection。这是我的模型:
public string Description{ get; set; }
public ICollection<int> Target{ get; set; }
public int Category { get; set; }
有没有一种方法可以在序列化Json之前处理Json,以便从逗号分隔的字符串中进行收集?
翻翻过去那场雪
慕容森