I am getting an information formatted as this
{"UFs": [
{
"Valor": "24.184,92",
"Fecha": "2014-10-07"
}
]}
I created this
Public Class clValores
Private pFecha As String
Private pValores As String
Public Property Fecha As String
Get
Return pFecha
End Get
Set(ByVal value As String)
pFecha = value
End Set
End Property
Public Property Valor As String
Get
Return pValores
End Get
Set(ByVal value As String)
pValores = value
End Set
End Property
End Class
And this
Dim Valor As clValores = JsonConvert.DeserializeObject(Of clValores)(result)
Response.Write(Valor.Fecha)
Respons ...
Go to the complete details ...