gpt4 book ai didi

C# linq to xml

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

我有一个 xml 字符串,我希望使用 LINQ to XML 遍历它(我从未使用过它,所以希望学习)。但是当我尝试使用

XDocument xDoc = XDocument.Load(adminUsersXML);
var users = from result in xDoc.Descendants("Result")
select new
{
test = result.Element("USER_ID").Value
};

我收到一条错误消息,指出路径中存在非法字符。阅读它,这是因为我不能以这种方式传递标准字符串。有没有办法使用 XML LINQ qith 标准字符串?

谢谢。

最佳答案

我的猜测是 adminUsersXML 是 XML 本身,而不是指向包含 XML 的文件 的路径。如果是这种情况,只需使用:

XDocument doc = XDocument.Parse(adminUsersXML);

关于C# linq to xml,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4734615/

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