Describes the basic XML code in detail.

Source: Internet
Author: User
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!

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.