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
JSONString
DataSe
Create a class for your deserialized data.
Use:
YourClass yourObject = JsonConvert.DeserializeObject(jsonStr);