在只有一次出现的情况下,将属性的类型从数组更改为单个项是正常的做法吗?
[
{
"sport": [
"Football",
"Hockey"
]
},
{
"sport": "Football"
}
]
如果不知道它是数组还是对象,又如何将这些数据转换为编程对象?
与:How to handle both a single item and an array for the same property using JSON.net