Send Json To Server And Convert To Strongly Type Obj
Here I demonstrate how we can send a big or small JSON object and no matter how big is the object We can deserialize the object the a C# object with ONLY ONE LINE
For ref:
//json2csharp.com
//http://stackoverflow.com/questions/22191167/convert-json-string-to-c-sharp-object-list
var model = JsonConvert.DeserializeObject(ourValidJson);