Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Deserializing variable Type JSON array using DataContractJsonSerializer

Tags:

json

c#

json.net

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?

like image 864
Selene Avatar asked Aug 01 '09 00:08

Selene


1 Answers

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.

like image 96
James Newton-King Avatar answered Oct 16 '22 21:10

James Newton-King