Deserialize JSON to already filled class in C#
I have to make multiple requests to get some data from a REST webAPI
(it’s a lot of data and the service doesn’t give it to me all in one single request).
To do that, I’m using do while
and it’s all working fine.
My question is simple: is there a way of, when I deserialize the result, add the additional data to the previous data?