I appreciate that dotnet has many mechanisms for working with XML in a variety of ways ...
Suppose I have a string containing XML ....
<?xml version="1.0" encoding="utf-8" ?>
<root>
<Element1>
<Element1_1>
SomeData
</Element1_1>
</Element1>
<Element2>
Some More Data
</Element2>
</root>
What is the easiest (most readable) way to remove Element1_1?
Updating ... I can use any .Net-API available in .Net 3.5: D
source
share