pracuję z następującym JSON ciągJak deserializowania json ciąg do listy obiektów w C# kropką
{
"transactions":
[
{
"paymentcharge":"0.0",
"amount":352,
"id":13418,
"shippingcharge":35,
"shippingtype":2,
"status":2,
"paymenttype":1,
"date":"2012-10-06 16:15:28.0"
},
{
"paymentcharge":"0.0",
"amount":42455,
"id":16305,
"shippingcharge":0,
"shippingtype":2,
"status":2,
"paymenttype":2,
"date":"2012-11-30 09:29:29.0"
},
{
"paymentcharge":"1.0",
"amount":42456,
"id":16305,
"shippingcharge":0,
"shippingtype":2,
"status":2,
"paymenttype":2,
"date":"2012-11-30 09:29:29.0"
}
],
"count":3
}
Mam strukturę klasy w następujący sposób analizowania i uczucie danych json
class clsSalesTran
{
public double paymentcharge { get; set; }
public double amount { get; set; }
public long id { get; set; }
public int shippingcharge { get; set; }
public int shippingtype { get; set; }
public int status { get; set; }
public int paymenttype { get; set; }
public DateTime date { get; set; }
}
Jak można deserializować powyższy ciąg JSON na listę?
Używam Newtonsoft.Json do deserializacji.
jak ozdobić członka klasy, aby pasował do obiektu JSON? Ex: obiekt JSON zawiera {1024720: "somePic.jpg"} Mam klasy Class Public Image {public string hdimage ; } –