Deleting XML nodes in C# done right
Lets imagine we have task: Select all nodes <Test> from XML file using Xpath and delete them. No problem: XmlNodeList nodeList = xml.SelectNodes("//Test" »
Lets imagine we have task: Select all nodes <Test> from XML file using Xpath and delete them. No problem: XmlNodeList nodeList = xml.SelectNodes("//Test" »
Intro Let's speak about code optimization. It is a real fun making the code run faster. Just imagine: you take a cup of tea, sit down »