在C#中,XmlDocument類用于操作XML文檔。下面是一些XmlDocument類的常見用法:
XmlDocument xmlDoc = new XmlDocument();
xmlDoc.Load("path/to/xml/file.xml");
XmlNode rootNode = xmlDoc.CreateElement("RootElement");
xmlDoc.AppendChild(rootNode);
XmlNode elementNode = xmlDoc.CreateElement("ElementName");
rootNode.AppendChild(elementNode);
XmlAttribute attribute = xmlDoc.CreateAttribute("AttributeName");
attribute.Value = "AttributeValue";
elementNode.Attributes.Append(attribute);
elementNode.InnerText = "ElementText";
XmlNodeList nodeList = xmlDoc.SelectNodes("//XPathExpression");
foreach (XmlNode node in nodeList)
{
// 處理節(jié)點(diǎn)邏輯
}
xmlDoc.Save("path/to/save/file.xml");
這些是使用XmlDocument類的一些基本操作。根據(jù)具體的需求,你可以根據(jù)這些示例進(jìn)行擴(kuò)展和修改。