I'm having an xml file like
<Root>
<Child val1="1" Val2="0"/>
<Child val1="1" Val2="2"/>
<Child val1="1" Val2="3"/>
<Child val1="1" Val2="4"/>
<Child val1="1" Val2="5"/>
<Child val1="6" Val2="0"/>
<Child val1="7" Val2="0"/>
</Root>
i need to store the data in any temporary storage ( namely a Dictionary
) for some sort of manipulations . but i cannot use dictionary
here because dictionary does not support same keys. can any one suggest me a better way to store this data?