gpt4 book ai didi

c# - 如何从 XML 文件中读取值

转载 作者:太空狗 更新时间:2023-10-29 23:03:20 27 4
gpt4 key购买 nike

我有一个名为 RESTORE.XML 的 XML 文档它拥有这些值(value)观..

<EmployeeDetails>
<EmployeeID>156824</EmployeeID>
<EmployeeName>ALEX</EmployeeName>
<EmployeeAge>29</EmployeeAge>
</EmployeeDetails>

我想从我的 C# 应用程序中读取这三个值并将其存储在 3 个不同的变量中。

如何使用 C# 实现?谢谢。

最佳答案

这应该有效:

using System.Xml.Linq;
XDocument xdoc = XDocument.Load("RESTORE.XML");
xdoc.Descendants("EmployeeID").First().Value;
xdoc.Descendants("EmployeeName").First().Value;

关于c# - 如何从 XML 文件中读取值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5013936/

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