开发者

Xml / Newtonsoft Json Object Seralization in wp7 Mango

开发者 https://www.devze.com 2023-04-09 04:15 出处:网络
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

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);
0

精彩评论

暂无评论...
验证码 换一张
取 消