在C#中反序列化JSON匿名对象
问题描述:
我要如何转换JSON格式的数据字符串转换为匿名对象
How do I convert a string of json formatted data into an anonymous object?
答
C#4.0增加了可用于动态对象。看一看this.
C# 4.0 adds dynamic objects that can be used. Have a look at this.