I'm wondering how to create a objet class from json file or xml file ?
example :
I get this json file from webservice :
{"nid":"3798","vid":"3788","type":"contact","language":"fr","title":"G","uid":"1","status":"1","created":"1374598689","changed":"1374598689","comment":"1","promote":"0","sticky":"0","tnid":"0","translate":"0"}
I would like to create a class like :
Public Class Card
Public nid As Integer
Public vid As Integer
Public type As String
Public language As String
Public title As String
.
.
.
End Class
NB :
- My question is not how to serialize / deserialize json objet in vb.net ?
- My xml file doesn't have XSD that why is more difficult
- My code is written in VB.Net not in C#. I found many website which convert json to c# (http://json2csharp.com/), but nothing json to vb.net
If I have no choice I will create manually my classes ... :-(
Thank in advance for your help
Eric
