{
"users": [
{
"name": "User1",
"email": "[email protected]",
"phone": "+12049987456",
"status": "Active",
"title": "Mr"
},
{
"name": "User2",
"email": "[email protected]",
"phone": "+12040147456",
"status": "Active",
"title": "Mr"
},
{
"name": "User3",
"email": "[email protected]",
"phone": "+12040787456",
"status": "Active",
"title": "Ms"
}
]
}
Tried Converting this json object to a List but it is only having null values
var a = JsonConvert.DeserializeObject<User>(jsonData);
How can i Parse it to a Class Object ?
Newtonsoftjson library and parse the json to C# class - nuget.org/packages/Newtonsoft.Json