It is not clear what variables do you have. If there is a separate line with "{...}" data, then try something like this:
Dim example = "{""num_sensors"":2,""addresses"":[14915921967490352962,14915921967490352988],""data"":[25.5625,25.78]}"
Dim d As MyData = System.Text.Json.JsonSerializer.Deserialize(Of MyData)(example)
Dim firstValue As Double = d.data(0)
Dim secondValue As Double = d.data(1)
textbox1.Text = firstValue.ToString( )
textbox2.Text = secondValue.ToString( )
And add a class:
Class MyData
Public Property data As Double()
End Class
Also use the "Manage NuGet Packages" command from Project menu to add a reference to System.Text.Json (if not present yet).