Hi,
Can anyone please let me know how can I loop through IRestResponse or convert it to a Generic List or convert to a data table.
Mainly I have the data back from the service in IRestResponse<List<Lists>>
IRestResponse<List<Lists>> response2 = client.Execute<List<Lists>>(request);
And want to save these values in the database.
Thanks
NS