XMLの基本コードを詳しく解説
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("名称为"+item["Name"].InnerText); } //foreach(XmlNode item in root.ChildNodes){ //item是XML中的Computer对象 // foreach(XmlNode child in item.ChildNodes){ // switch(child.Name){ // case "Name": // Console.WriteLine("我的电脑是:"+child.InnerText); // break; // } // } // } Console.ReadLine(); } } }
以上がXML の基本コードの詳細な紹介の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。