我想在C#中使用XmlWriter将以下行添加到我的xlm文件中:
<image href="c:\temp\test.png"/>
遗憾的是,WriteElementString不起作用 - 有没有人有解决方案?
提前致谢
答案 0 :(得分:1)
您可以使用XmlWriter ...
using (XmlWriter w = Xmlwriter.Create("test.png"))
{
w.WriteStartElement("image");
w.WriteAttributeString("href", "c:\temp\test.png");
w.WriteEndElement();
}
记住命名空间:System.Xml