反序列化JSON數組我有如下格式化的JSON數組:在vb.net
[
{
"property":96,
"listofstuff":[
{
"anotherproperty":"some text here",
"yetanother":"text goes here too"
}
],
"lastproperty":3001
},
<rest of array>
]
我怎麼能在這樣我可以有由property
索引對象列表的方式反序列化呢?意思是說,我想能夠訪問像這樣的數據:MyList(96).lastproperty
或MyList(96).listofstuff.yetanother
,並讓它返回適當的數據類型?這甚至可能在vb.net?
我真的試圖解析它與正則表達式原來,事後看起來似乎不是最聰明的方式去... – Cyclone 2011-02-01 22:53:21