XMLを読み込もうとしていますが、 'all'要素のすべての子要素を返したいと思います。私はこのコードを持っている:エラーCS1935 '選択'が見つかりません
var xmlFile = XDocument.Parse(responseText);
var elements =
from el in xmlFile.Elements("all")
select el;
をしかし、私はエラーを取得しています:私は私のプロジェクトの上部にusing System.Linq
を含めましたが、それは助けていないようです
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'?
。
これを修正する別の方法はありますか?
対象となる.netフレームワークは何ですか? – Smartis
[クエリパターンの実装を見つけることができませんでした]の重複可能性があります(http://stackoverflow.com/questions/8215773/could-not-find-anplementation-of-the-query-pattern) –
また、 'System.Core'はプロジェクト参照にあります。 – Smartis