I am creating a C# Application using Web Services. In my Web Services I\'m using a JSONString data.
But I\'m not able to convert this string into a DataSe
I prefer you follow Nick's suggestion... and perhaps your web services should modified because I saw similar property on each Table and Table1 and property inside...
Create class using json2csharp.com and I got this
public class Table
{
public string DisplayVoucherNumber { get; set; }
public string ActualDate { get; set; }
public string AccountName { get; set; }
public string NetWeight { get; set; }
public string Weight { get; set; }
public string Pcs { get; set; }
public string Difference { get; set; }
}
Deserialize json string using
List list = JsonConvert.DeserializeObject
>(jsonstring);