I have list of JSON strings which may contain 1000-2000 records per string. The list count may be around 100,000. I tried to use JSON.net (JsonConvert.DeserializeObject), System.Web.Helpers.Json.Decode and JavascriptSerializer.Deserialize (i followed this post and used DynamicJsonConverter). In a performance comparison, JavascriptSerializer.Deserialize works quite better than others but still it does not meet my requirements. I need to know that what could be the most efficient way of de-serializing JSON into object/dynamic. Or if someone would like to share performance benchmark of de-serializing JSON would be very helpful.
Thanks!
>(json);
– ak1 Apr 03 '14 at 14:26