Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C# deserialize JSON using JavaScriptSerializer.DeserializeObject

I am not a C# programmer, but rather playing with the language from time to time. I wonder, if I have a JSON string which I want to deserialize using JavaScriptSerializer.DeserializeObject, how could I do that. For instance, if I have a JSON:

{
    "Name": "col_name2",
    "Value": [
        {
            "From": 100,
            "To": 200
        },
        {
            "From": 100,
            "To": 200
        }
    ]
}

And I have that JSON string in a variable called sJson:

using System.Web.Script.Serialization;
...

JavaScriptSerializer jss = new JavaScriptSerializer();
Object json = jss.DeserializeObject(sJson);

and now how do I use this Object json variable?

Note: I already know how to do it using System.Web.Script.Serialization.Deserialize<T> method.

like image 857
vivanov Avatar asked Feb 02 '26 12:02

vivanov


1 Answers

Look at this post for Davids Answer:

Deserialize json object into dynamic object using Json.net

You can put it into a dynamic (underlying type is JObject) Then you can than access the information like this:

JavaScriptSerializer jss = new JavaScriptSerializer();
dynamic json = jss.DeserializeObject(sJson);
Console.WriteLine(json["Name"]); // use as Dictionary

I would prefer create a data transfer object (DTO) represent your JSON Structure as a c# class.

like image 117
Butti Avatar answered Feb 04 '26 01:02

Butti