BindingList 到字符串数组的部分
我正在使用 BindingList
来填充一些控件。
在表单的一部分中,我需要使用 BindingList
中存储的一些数据来创建数组。假设我有 BindingList
并希望将所有 CEmployee.Surnames
检索到字符串数组中,我该如何处理而不循环遍历每个 CEmployee
在 BindingList
中?
问候
塔夫
I'm am using the BindingList
to populate some controls.
On part of a form I need to use some of the data stored within the BindingList
to create and array. Say I have BindingList<CEmployee>
and wanted to retrieve all CEmployee.Surnames
into a string array how would I go about this without looping through each CEmployee
in the BindingList
?
Regards
Taff
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 LINQ 查询姓氏:
如果您需要将其作为数组,则可以使用结果的
ToArray
方法:You can use LINQ to query the Surnames:
If you need it as an Array, you can use the
ToArray
method of the result: