How to loop a <List<Dictionary<string, object>>> of Json.net to convert an excel file using EPPUS

172 Views Asked by At

How to loop a <List<Dictionary<string, object>>> of Json.net to convert an excel file using EPPUS

var resposneJson1 = JsonConvert.DeserializeObject<List<Dictionary<string, object>>>(parametroJson);

I have to retrieve the names of the fields to create the excel headers and then create the rows with the values.

My dictionary

0

There are 0 best solutions below