C#.NET接收JSON数组


如果要在后台接收类似以下的JSON数据

 

试了object、Array、Hashtable等类型都收不到,string[]数组的话只收到长度,内容还是空的,最后想到用List<string>去接,结果一样内容是空的

解决方案:可以使用List<Dictionary<string,string>>类型去接收

原文:https://blog.csdn.net/a50059074/article/details/81354361

原文地址:https://www.cnblogs.com/louby/p/10673600.html