gpt4 book ai didi

c# - 将字符串中的 XML 内容添加到 XDocument

转载 作者:数据小太阳 更新时间:2023-10-29 02:02:02 25 4
gpt4 key购买 nike

我必须制作这样的 xml 并即时发布到 url

<Student>
<Name>John</Name>
<Age>17</Age>
<Marks>
<Subject>
<Title>Maths</Title>
<Score>55</Score>
</Subject>
<Subject>
<Title>Science</Title>
<Score>50</Score>
</Subject>
</Marks>
</Student>

string marksxml = "<Marks><Subject><Title>Maths</Title><Score>55</Score></Subject><Subject><Title>Science</Title><Score>50</Score></Subject></Marks>";
XDocument doc = new XDocument(new XElement("Student",
new XElement("Name", "John"),
new XElement("Age", "17")));

将字符串 marksxml 嵌入到 XDocument 中需要做什么?

最佳答案

只需将 marksxml 解析为 XElement 并添加:

XDocument doc = new XDocument(
new XElement("Student",
new XElement("Name", "John"),
new XElement("Age", "17"),
XElement.Parse(marksxml)
);
)

关于c# - 将字符串中的 XML 内容添加到 XDocument,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30931181/

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