在C#中,可以使用System.Xml命名空間中的類來操作XML。下面是一個簡單的示例,演示了如何創建XML文檔、添加元素、保存和讀取XML文檔。
首先,需要引入System.Xml命名空間:
using System.Xml;
XmlDocument xmlDoc = new XmlDocument();
XmlElement root = xmlDoc.CreateElement("Root");
xmlDoc.AppendChild(root);
XmlElement child = xmlDoc.CreateElement("Child");
child.InnerText = "Hello World";
root.AppendChild(child);
xmlDoc.Save("path/to/file.xml");
xmlDoc.Load("path/to/file.xml");
XmlNodeList nodeList = xmlDoc.GetElementsByTagName("Child");
foreach (XmlNode node in nodeList)
{
string text = node.InnerText;
Console.WriteLine(text);
}
這只是一個簡單的示例,System.Xml命名空間還提供了更多的類和方法來處理XML文檔,如XmlReader和XmlWriter等。可以根據具體需求進一步學習和使用。