I have very simple question. I have an idictionary (in fact I have a JSON string) that has multiple levels. I can convert first level to dictionary but on second level array is returned instead of dictionary type. Here is the start of JSON string
"{"request_data":{"items":[{"xyz":"something"}...
And here is the code
Dim idic As IDictionary
idic = serializer.Deserialize(Of IDictionary)(str)
Dim dic As New Dictionary(Of String, Object)
dic = idic.Item("request_data")
dic = dic.Item("items")
Line before the last line returns Dictionary type but the last line returns Array in fact, therefore exception is thrown
Unable to cast object of type 'System.Object[]' to type 'System.Collections.Generic.Dictionary`2[System.String,System.Object]'.
I can iterate Array but don't want to do that because I want key-value pairs. Any suggestions?
BTW, I found the solution in C# but I can't make it work on my case http://forums.asp.net/t/1550438.aspx/1
[in your JSON code. – Konrad Rudolph Jun 8 '11 at 11:06