BindingList 到字符串数组的部分

发布于 2024-11-26 12:22:13 字数 300 浏览 1 评论 0原文

我正在使用 BindingList 来填充一些控件。

在表单的一部分中,我需要使用 BindingList 中存储的一些数据来创建数组。假设我有 BindingList 并希望将所有 CEmployee.Surnames 检索到字符串数组中,我该如何处理而不循环遍历每个 CEmployeeBindingList 中?

问候

塔夫

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 技术交流群。

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

发布评论

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

评论(1

风月客 2024-12-03 12:22:13

您可以使用 LINQ 查询姓氏:

var surnames = from employee in myBindingList select employee.Surname;

如果您需要将其作为数组,则可以使用结果的 ToArray 方法:

string[] surnamesArray = surnames.ToArray<string>();

You can use LINQ to query the Surnames:

var surnames = from employee in myBindingList select employee.Surname;

If you need it as an Array, you can use the ToArray method of the result:

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