Deserializing a JSON file with JavaScriptSerializer()
You need to create a class that holds the user values, just like the response class User. Add a property to the Response class ‘user’ with the type of the new class for the user values User. public class Response { public string id { get; set; } public string text { get; set; } … Read more