Is this possible in JSON?
问题 I am currently working with json.net ! I know how to deserialize json data and how to map with our class. Now I am eager about some queries ! Suppose my jsonstrings is "attributes":{ "color":"Brown", "condition":"Used", "currency":"USD", "price":"10500", "price_display":"$10,500", } and my attribute class ( in which i want to deserialize above string ) is Public class Attribute { public string name{ get; set; } public string value{ get; set; } } Now I am using following code for