I have a REST API that sends the following answer in json format and I want to go through it in order to add a listview to what I go through.
{
"resultado": "OK",
"datos": [
{
"Pago": "1500.00",
"Fecha": "2018-09-27"
},
{
"Pago": "900.00",
"Fecha": "2018-10-16"
}
]
}
The server's response deserializo asi:
dynamic msjdes = JsonConvert.DeserializeObject(responseText);
Where msjdes is the json format already in c # and it appears as I put it up.
How do I go through it to add them as Item to a listview?
Thank you very much ...