I am serializing , a MultiDictionary<String,Object>
http://powercollections.codeplex.com/ to json .
It has 618 elements with elements being deeply nested ,i.e. a single Object may have several dictionary like objects in it . I am using JSON.Net
String json = JsonConvert.SerializeObject(json, Newtonsoft.Json.Formatting.Indented);
what am i missing ?
MORE INFO: -
This was working fine till i was using dynamic , i had to switch to MultiDictionary to allow multiple properties of the same name . It works for most cases , only when the number of items is large , it breaks .
UPDATE: -
I have been able to get a hold of the Memory consumption but cutting down on some elements that were getting added recursively to each element.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…