JSON列表的int

我有一堂课

public class ItemList { public long Id { get; set; } public string Name { get; set; } public string Description { get; set; } public List<int> ItemModList { get; set; } } 

我应该如何给intinputJSON列表,因为它没有一个键来匹配它的值

JSON

 { "Id": "610", "Name": "15", "Description": "1.99", "ItemModList": [] } 

我应该在ItemModList中写什么?

假设你的整数是0,375,668,5和6:

 { "Id": "610", "Name": "15", "Description": "1.99", "ItemModList": [ 0, 375, 668, 5, 6 ] } 

我build议你改变“Id”:“610”为“Id”:610,因为它是一个整数/长整型,而不是一个string。 你可以阅读更多关于JSON格式和例子http://json.org/

JSON完全可以expression整数列表,而且您发布的JSON是有效的。 你可以简单地用逗号分隔整数:

 { "Id": "610", "Name": "15", "Description": "1.99", "ItemModList": [42, 47, 139] }