Dim parser As JSONParser
parser.Initialize(<text>)
Dim root As List = parser.NextArray
For Each colroot As Map In root
Dim car As String = colroot.Get("car")
Dim model As String = colroot.Get("model")
Next
where is this the remaining of Json input parsing? "year,price"
JsonTree is great tool & save us a lot of time. in this example, parsing is not complete! [ {car:"Toyota",model:"Prado"}, {year:2020,price:20000}, {year:2019,price:17000}, {year:2015,price:12000} ] We got this: Dim parser As JSONParser parser.Initialize() Dim root As List = parser.NextArray...