如何从 BindingList> 中选择特定项?
BindingList<KeyValuePair<string, string>> properties = new BindingList<KeyValuePair<string, string>>();
上面的代码存储了大约 10-30 个对象 as KeyValuePair
我需要以某种方式选择一个元素,比如使用键“id”,
我该如何处理?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
BindingList
不直接实现IEnumerable
,因此即使使用System.Linq<,
FirstOrDefault()
(LINQ 对象)也无法工作/代码>。您需要定位底层集合。以下对我有用:BindingList
does not directly implementIEnumerable
soFirstOrDefault()
(LINQ to objects) will not work, even when usingSystem.Linq
. You need to target the underlying collection. The following worked for me: