IEnumerable<T> を List<T>に変換するには .ToList() を使う
ちょっとつまづいたのでメモ。
C# の LINQ to Objects は、var で結果を受け取る限り、普段は変数の型をそれほど意識する必要はないのですが、メソッドの返り値として渡そうとしたところ、型が違うために以下のエラーが発生しました。
型 'System.Collections.Generic.IEnumerable<string>' を'System.Collections.Generic.List<string>' に暗黙的に変換できません。明示的な変換が存在します。(cast が不足していないかどうかを確認してください) (CS0266)
解決方法
.ToList()メソッドで、 IEnumerable 型から List 型に変換することで解決。
sample_linq_tolist.cs
public static List<string> GetFileListWildcardExpanded(List<string> OriginalFileList)
{
var newFileList = new List<string>();
// (中略)
// Distinct - 重複削除
//return newFileList.Distinct(); // (CS0266)
return newFileList.Distinct().ToList();
}
Author And Source
この問題について(IEnumerable<T> を List<T>に変換するには .ToList() を使う), 我々は、より多くの情報をここで見つけました https://qiita.com/rohinomiya/items/e96bc75c44470d7fed52著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .