This article describes in detail the basic structure of xml and the implementation of code.
Detailed description of the basic XML code
Using System; using System. collections. generic; using System. linq; using System. text; using System. threading. tasks; using System. xml; namespace Day08_XML {class Program {static void Main (string [] args) {XmlDocument doc = new XmlDocument (); doc. load ("Computer. xml "); XmlNode root = doc. documentElement; foreach (XmlNode item in root. childNodes) {string id = item. attributes ["id"]. value; Console. writeLine (id); Console. writeLine ("Name:" + item ["Name"]. innerText);} // foreach (XmlNode item in root. childNodes) {// item is the Computer object in XML // foreach (XmlNode child in item. childNodes) {// switch (child. name) {// case "Name": // Console. writeLine ("My computer is:" + child. innerText); // break; //} Console. readLine ();}}}
Lenovo
Apple
The above section details the basic code of XML. For more information, see other related articles in the first PHP community!