I have a dictionary object which is declared as shown below.
Dictionary<string, Dictionary<int, List<DataRow>>> lineList = new Dictionary<string, Dictionary<int, List<DataRow>>>();
I want to convert this object into Json string but when I used following code, It only considered first object from dictionary list and then added rest of the data in it regardless of for which key it is connected.
var linechartString = JsonConvert.SerializeObject(lineList);
I would like to know if there is a different function available which can convert my dictionary object into JSON string.