I’m using asp.net mvc4 and json.net
and i have a json structure like http://api.domaintools.com/v1/domaintools.com/whois/
How can i deserialize it into my own class ? This looks a bit complicated structure to me to realize how to build my class ?
Nam Vo
You can use the following class structure:
You can then do like below:
Thus the data is now deserialized into your own class Response…hope this helps….