gpt4 book ai didi

c# - 找不到错误 CS1935 'Select'

转载 作者:行者123 更新时间:2023-11-30 21:42:17 25 4
gpt4 key购买 nike

我正在尝试读取一些 XML,我想返回“all”元素的所有子元素。我有这段代码:

    var xmlFile = XDocument.Parse(responseText);

var elements =
from el in xmlFile.Elements("all")
select el;

但是我得到了错误:

15:15 08/03/2017 Error : Script (C#.net Script): error CS1935: Could not find an implementation of the query pattern for source type 'System.Collections.Generic.IEnumerable'. 'Select' not found. Are you missing a reference or a using directive for 'System.Linq'?

我在我的项目的顶部包含了 using System.Linq 但这似乎没有帮助。

还有其他方法可以解决这个问题吗?

最佳答案

检查您的项目是否引用了 System.Core

如果尝试将 LINQ.net 2.0 一起使用,这是一个已知问题。

关于c# - 找不到错误 CS1935 'Select',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42675128/

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