I\'m trying to convert a JSON String into an VB.net Object to get easy access to alle the data in the JSON String.
My JSON String looks like this:
{
You're close; you've got your parentheses in the wrong place. In your Rootobject class, change this line:
Rootobject
Public Property data() As Datum
to this:
Public Property data As Datum()
Or, this will also work:
Public Property data As List(Of Datum)