I have a dictionary which holds another dictionary within the value.
i.e.:
Dictionary<string, object> primaryList = new Dictionary<string, object>();
var secondaryList = primaryList.Select(x => x.Value);
I need to get the value as a dictionary in secondaryList. How can i do that?
I'm getting a collection on deserializing the json from the following link:
Deserialize JSON into C# dynamic object?
From the object, i need to parse the value from the primary list to a key value pair.