[Solved] Convert JSON string to data array using javascript or c# [closed]

[ad_1]

Example JSON String

string data = "{ \"A\" : \"1\", \"B\" : \"2\", \"C\" : \"3\" }";

Deserializing it into an object that will contain each of the keys and their values

object yourObject = new JavaScriptSerializer().DeserializeObject(data);

1

[ad_2]

solved Convert JSON string to data array using javascript or c# [closed]