清单框从 LinQ 中选择的项目
我正在编写以下代码行来提取复选框中选定的项目。
ListItemCollection ChecklistBoxCollection = new ListItemCollection();
foreach (ListItem ChecklistBoxItem in ChecklistBox.Items)
if (ChecklistBox.Selected)
ChecklistCollection.Add(ChecklistBox);
有什么办法可以在 LinQ 中获取这些项目吗?
I am writing the following line of code to extract the selected items in checklistbox.
ListItemCollection ChecklistBoxCollection = new ListItemCollection();
foreach (ListItem ChecklistBoxItem in ChecklistBox.Items)
if (ChecklistBox.Selected)
ChecklistCollection.Add(ChecklistBox);
Is there any way to get these items in LinQ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不会自动转换为 ListItemCollection,但您可以使用 AddRange 立即添加所选项目。我不确定这是否有很大的改进,并且可能会更慢,因为 AddRange 仅需要一个数组。
There's no automatic conversion to ListItemCollection, but you can use AddRange to add the selected items at once. I'm not sure this is much of an improvement and may be slower because AddRange only takes an array.
我一直在使用这些扩展方法。
I have been using these extension methods.