Xml / Newtonsoft Json Object Seralization in wp7 Mango
By usin开发者_如何学Pythong Newtonsoft json serializer and xml Serrializer how can i serialize and deserialize objects. Pls send me the method to acheve the same.
Your question is not 100% clear, you might want to elaborate.
You can deserialize an object to/from JSON using JsonConvert
:
ObjectToDeserialize value =
JsonConvert.DeserializeObject<ObjectToDeserialize>(jsonString);
精彩评论