Hi All
I use a webservice to return JSON data which looks something like:
Data:[{"col1":"value1","col2":"value2","col3":"value3","col4","value4"}{…etc...}]
I store save the above to the list:
dim recordList = root.Get("Data")
I then iterate through the list using:
For i = 0 To recordList.Size...