1
XDocument
を使用すると、次のコードをどのように書き直すことができますか?このコードは、要素値をstrValues
に置き換えます。要素はstrKeys
とstrXPath = "/root/node/subnode[param1='value1' and param2='value2']"
で指定されます。要素をXmlDocumentの代わりにXDocumentに置き換えます
public static void ReplaceXmlElement(string strXPath, string[] strKeys, string[] strValues)
{
XmlDocument xDoc = new XmlDocument();
xDoc.Load(xmlFile.xml);
XmlNode xNode = xDoc.SelectSingleNode(strXPath);
int intTemp = 0;
foreach (XmlNode node in xNode)
{
node.Name.ToString();
if (node.Name == strKeys[intTemp])
{
node.InnerXml = strValues[intTemp];
intTemp++;
}
}
xDoc.Save(xmlFile.xml);
}