我要做的是在特定路径上创建一个XmlNode(如果它不存在)。
我的功能如下:
public XmlElement getElement(string path)
{
XmlElement result = (XmlElement)document.SelectSingleNode(path);
if (result == null) {
// TODO: Create the specified path here
}
return result;
}
我可以使用任何内置函数在指定路径创建元素吗?该路径可能包含此/root/element[@id="5"]/subelement/item[@name="thing"]
等属性。
提前致谢!