在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)
{
// 处理节点逻辑
}
xmlDoc.Save("path/to/save/file.xml");
这些是使用XmlDocument类的一些基本操作。根据具体的需求,你可以根据这些示例进行扩展和修改。