如何添加" href"在C#中使用XmlWriter?

时间:2014-07-22 11:37:54

标签: c# xml xmlwriter

我想在C#中使用XmlWriter将以下行添加到我的xlm文件中:

 <image href="c:\temp\test.png"/>

遗憾的是,WriteElementString不起作用 - 有没有人有解决方案?

提前致谢

1 个答案:

答案 0 :(得分:1)

您可以使用XmlWriter ...

using (XmlWriter w = Xmlwriter.Create("test.png"))
{
    w.WriteStartElement("image");
    w.WriteAttributeString("href", "c:\temp\test.png");
    w.WriteEndElement();
}

记住命名空间:System.Xml