XML learning notes! (C #) First school XML, learn to make a note! 1. Select a specific node method: xmlDocument mydoc = new xmldocument (); mydoc.load (xpath); message.text = mydoc.selectsinglenode ("// person = 'Tim Daly'). ChildNodes.Item (2) .innertext;} // Description: Selectsinglenode selected a node, () is the ID of Node, "//" is indicated by any layer. // You can xmlnode root = mydoc.selectsinglenode ("books"); books is the root's id! // childnodes is all next level nodes. Name title title2 // Tim Daly Name > // CTO title> // cto0 title2> ----> it is the "item (2)"; // person> 2. How to get all specific names Node? Xmldocument mydoc = new xmldocument (); mydoc.load (xpath); XMLNodelist List = mydoc.getGetElementsBytagname ("name"); // This can get all "name" elements // operation as follows: for (int I = 0; i