如何判断Json数据的索引为空
收到返回的json数据
{"retCode":0,"infoCustomers":[]}
我判断了
if ("0".Equals(Convert.ToString(jsonData["retCode"]))) //0为获取成功
{
//这里要判断infoCustomers索引,为空就是没有数据。
}
不知道如何判断infoCustomers为空索引。
------解决方案--------------------
if(jsonData["infoCustomers"].Count==0)
{
//infoCustomers项里面没有内容
}