0
我有以下XML:LinqToXml:解析字典
<Places Count='50'>
<Place ID='1' Row='1' Place='1' Type='1' Fragment='0'></Place>
<Place ID='2' Row='1' Place='2' Type='1' Fragment='0'></Place>
<Place ID='3' Row='1' Place='3' Type='2' Fragment='0'></Place>
<Place ID='4' Row='1' Place='4' Type='2' Fragment='0'></Place>
<Place ID='5' Row='1' Place='5' Type='2' Fragment='0'></Place>
//other tags
</Places>
我想Dictionary<int, int>
包含以下內容:
1,2 // 0 element in the Dictionary (type =1; count = 2)
2,3; // 1 element in the Dictionary (type =2; count = 3)
第一個參數是XML Type
,第二個參數是此類型的計數。
謝謝。
所以...你嘗試過什麼? –
我無法理解如何將它修改爲Dictionary – user1260827