Click here to Skip to main content
15,902,112 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How to parse json to class object?
Posted
Comments
_Asif_ 4-Nov-15 7:27am    
Would you mind showing us anything you have tried thus far?

var serializer = new JavaScriptSerializer();
serializer.RegisterConverters(new[] { new DynamicJsonConverter() });
dynamic data = serializer.Deserialize<object>(json);
 
Share this answer
 
Comments
Member 12051968 4-Nov-15 7:46am    
Data is very complex. Is there any other way to create class object while parsing data?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900