Linq从ListViewItemCollections中选择项目在c#

前端之家收集整理的这篇文章主要介绍了Linq从ListViewItemCollections中选择项目在c#前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何在ListViewItemCollections中使用 Linq在C#中选择ListViewItem?

新新200的X- 200 X- 200 200 X- 200 200 X- 200 200 X- 1992 200 X-

ListViewItemCollections lv = listview1.items;

var test = from xxx in lv where xxx.text = "data 1" select xxx;


test   <--- now has the listviewitem with "data 1" as string value..

解决方法

获取ListViewItem的枚举器,您必须投射ListView的Items集合:
IEnumerable<ListViewItem> lv = listview1.items.Cast<ListViewItem>();

然后,您可以使用LINQ:

var test = from xxx in lv 
            where xxx.text = "data 1" 
            select xxx;
原文链接:https://www.f2er.com/csharp/94139.html

猜你在找的C#相关文章