How can I deserialize JSON to a simple Dictionary in ASP.NET?

前端 未结 21 2790
粉色の甜心
粉色の甜心 2020-11-21 06:33

I have a simple key/value list in JSON being sent back to ASP.NET via POST. Example:

{ \"key1\": \"value1\", \"key2\": \"value2\"}

21条回答
  •  长发绾君心
    2020-11-21 07:25

    Tried to not use any external JSON implementation so i deserialised like this:

    string json = "{\"id\":\"13\", \"value\": true}";
    
    var serializer = new JavaScriptSerializer(); //using System.Web.Script.Serialization;
    
    Dictionary values = serializer.Deserialize>(json);
    

提交回复
热议问题