Im getting a Json Data from an API and i have been trying to deserialize.
Json data:
{
\"items\": [
{
\"id\": \"1\",
\"nam
Your Json string is good formatted and the entities are according to Json2Csharp good too.
but your problem is with the instruction JsonConvert.DeserializeObject
>(content);
all that json that you have is only ONE User, and you are trying to get a list of them, there is the issue,
you can try instead with:
JsonConvert.DeserializeObject(content);