C# Builder中的XML處理功能可以通過System.Xml命名空間來實現。以下是一些常用的XML處理功能:
XmlDocument xmlDoc = new XmlDocument();
XmlElement root = xmlDoc.CreateElement("root");
xmlDoc.AppendChild(root);
xmlDoc.Load("sample.xml");
XmlNode node = xmlDoc.SelectSingleNode("/root/child");
string value = node.InnerText;
XmlNode node = xmlDoc.SelectSingleNode("/root/child");
node.InnerText = "new value";
xmlDoc.Save("modified.xml");
除了XmlDocument類外,還可以使用XDocument類來處理XML文檔,XDocument類提供了更加方便的LINQ to XML API來處理XML文檔。