I have an XML file, e.g.
<Bars1>
<Bar name='0'>245</Bar>
<Bar name='1'>180</Bar>
<Bar name='2'>120</Bar>
<Bar name='3'>60</Bar>
<Bar name='4'>0</Bar>
</Bars1>
<Bars2>
<Bar name='0'>25</Bar>
<Bar name='1'>10</Bar>
<Bar name='2'>10</Bar>
<Bar name='3'>6</Bar>
<Bar name='4'>0</Bar>
</Bars2>
<Gubbins3>
<Bar name='0'>45</Bar>
<Bar name='1'>18</Bar>
<Bar name='2'>12</Bar>
<Bar name='3'>4</Bar>
<Bar name='4'>0</Bar>
</Gubbins3>
and a List<int>
notNeededBarNames, containing e.g. { 1, 3 }
I have loaded the XML file into an XmlDocument
xmlDoc, and want to remove ANY "Bar" element where the attribute "name" is one of the integers from my list, regardless of where it might exist in the XML . My example is small, but in reality the document and the list could be quite large.
Is there a nice elegant approach to doing this? I can "brute force" it, but I can't help feeling there might be a better way.
Hope you can help!
Linq2Xml can make the life easier.