I have a JSON string in this form:

string jsonStr = "[\"A\", [\"Martini\", \"alovell\"],[\"Martin\", \"lovell\"]]"

I am trying to deserialize the JSON using the C# .NET deserializer DataContractJsonSerializer with the following code snippet

MemoryStream ms = new MemoryStream(Encoding.UTF8.GetBytes(jsonStr));
DataContractJsonSerializer serializer = new DataContractJsonSerializer(typeof<X>);
X data = (X)serializer.ReadObject(ms);

Now since the JSON array is an array of variable types I do not know what type of object X should be

If my String were

jsonStr = "[[\"Martini\", \"alovell\"],[\"Martin\", \"lovell\"]]"

I could use this:

X = List<List<String>>

and that would work for me. I was wondering if there is any way to deserialize variable type JSON array?

link|improve this question
feedback

1 Answer

up vote 5 down vote accepted

You could use Json.NET to do this.

JArray a = JArray.Parse(jsonStr);

The JArray would contain either strings or nested JArray's depending on the JSON.

link|improve this answer
I use this assembly, and it's fantastic. I highly recommend this. – blesh Aug 1 '09 at 4:51
Thanks James that did work for me – Selene Aug 5 '09 at 17:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.