Hi We are calling a webapi from c#. Getting json data. How to convert Json string to Datatable. I have read many posts suggesting to use a class, but my json string has 1024
columns...
How to convert Json string
to Datatable
without using a class
JsonConvert.DeserializeObject<DataSet>(json)
This didn't work