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

link|improve this question
What is your question? The JSON data does contain an array so it’s obvious that this code won’t work. – Konrad Rudolph Jun 8 '11 at 10:58
xyz is key and something is value in JSON string so I want to get them out as dictionary. – smbdy Jun 8 '11 at 11:00
@smbdy That’s irrelevant. The inner dictionary is in an array! Notice the [ in your JSON code. – Konrad Rudolph Jun 8 '11 at 11:06
I know it is array but I want to know if it is possible to convert it to dictionary. If I understand the link I've posted at the end, it is possible. – smbdy Jun 8 '11 at 11:13
@smbdy The link doesn’t show that. In fact, the link stores the value in an array, not in a dictionary. It’s just not meaningful to store the result in a dictionary, hence my question what exactly do you expect the result to be? What does this dictionary that you want to get look like? – Konrad Rudolph Jun 8 '11 at 11:24
show 4 more comments
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.