gpt4 book ai didi

.net - 是否有与 XmlWriter.WriteRaw 等效的 XElement?

转载 作者:行者123 更新时间:2023-12-01 11:57:20 24 4
gpt4 key购买 nike

我正在转换一些当前使用 XmlWriter 来创建文档的代码,而不是返回内容的 XElement

到目前为止,我很喜欢以模仿文档结构的方式构建代码,但有些内容是使用 XmlWriter.WriteRaw 编写的,以避免重新对 xml 进行 xml 化。我在 System.Xml.Linq 命名空间中找不到任何等效项。有吗?

最佳答案

XElement.Parse()应该可以解决问题。

例如:

XElement e = new XElement("root",
new XElement("child",
XElement.Parse("<big><blob><of><xml></xml></of></blob></big>"),
new XElement("moreXml")));

关于.net - 是否有与 XmlWriter.WriteRaw 等效的 XElement?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5723146/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com