C# lambda 表达式中的类型转换错误

发布于 2024-10-21 20:43:03 字数 479 浏览 1 评论 0原文

我创建了一个 ILIst 对象。此列表包含 Person 类型的对象。 现在我想根据特定条件使用 lambda 表达式过滤此列表。所以我这样做了:

IList<Person> personlist = new IList<Person>;
...
...
...

IList<Person> filtered_person = 
        (IList<Person>)personlist.Where(pd => pd.name != "anil");

但是这一行给出的错误是:

Unable to cast object of type 'WhereListIterator`1[Person]' to type 'Person'.

这里可能出了什么问题?

I have created an object of ILIst<Person>. This list contains objects of type Person.
Now I want to filter this list using a lambda expression based on a certain condition. So I did it as follows:

IList<Person> personlist = new IList<Person>;
...
...
...

IList<Person> filtered_person = 
        (IList<Person>)personlist.Where(pd => pd.name != "anil");

But this line gives error as:

Unable to cast object of type 'WhereListIterator`1[Person]' to type 'Person'.

What can be wrong here?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

醉生梦死 2024-10-28 20:43:03

无需铸造。您可以使用 ToList() 扩展方法创建列表,如果你需要一个:

IList<Person> filteredPerson = personlist.Where(pd => pd.name != "anil").ToList();

No need for casting. You can use the ToList() extension method to create a list, if you need one:

IList<Person> filteredPerson = personlist.Where(pd => pd.name != "anil").ToList();
拍不死你 2024-10-28 20:43:03

使用

IList<Person> filtered_person = (IList<Person>)personlist.Where(pd => pd.name != "anil").ToList();

表达式的结果是 IEnumerable 并且需要转换为列表。

Use

IList<Person> filtered_person = (IList<Person>)personlist.Where(pd => pd.name != "anil").ToList();

The result of your expression is IEnumerable<Person> and needs to be converted to a list.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文