我有類似的XML塊如下:如何從此XML獲取列表<XElement>?
<factsheet>
<bilcontents >
<config name="1" />
</bilcontents>
<singlefactsheet includeInBook="true">
<config name="7" />
<fund id="630" />
</singlefactsheet>
<doubleFactsheet includeInBook="true">
<config name="8" />
<fund id="623" />
<fund id="624" />
</doubleFactsheet>
<tripplefactsheet includeInBook="true">
<config name="6" />
<fund id="36" />
<fund id="37" />
<fund id="38" />
</tripplefactsheet>
</factsheet>
是否有可能對我來說,得到一個包含每個這些XElements的名單,只要includeInBook="true"
,並與每一個元素,我可以再處理與它基於節點的類型。
感謝喬恩,我實際上已經制定了類似的東西,所以我把它貼在下面。 – DaveDev 2010-06-23 16:51:24