2014-03-13 78 views

回答

1

我使用JSON.NET進行序列化和反序列化對象。你可以用nuget安裝它,http://www.nuget.org/packages/Newtonsoft.Json/

MyObject result = Newtonsoft.Json.JsonConvert.DeserializeObject<MyObject >(jsonString); 

string stringResult = Newtonsoft.Json.JsonConvert.SerializeObject(myObject); 
+0

你能指定反序列化對象的代碼嗎? @Daniel –

+0

編輯我的答案。 – Daniel

+0

現在代替MyObject我寫了動態並假設我得到了 {「Tb_id」:1,「detail」:[{「Item_id」:「Bvrgs1」,「Quantity」:1,「add_Details」:「Spicy」}, {「Item_id」:「Bvrgs2」,「Quantity」:2,「add_Details」:「Sweet」},{「Item_id」:「Bvrgs3」, 「Quantity」:3,「add_Details」:「」}]} 現在我該怎麼做,如果我分別想要Tb_id,Item_id,Quantity,Add_Details? –

相關問題