Can#39;t convert ListBox.ObjectCollection to a (typed) array(无法将 ListBox.ObjectCollection 转换为(类型化)数组)
问题描述
我想将项目转换为字符串数组或用于填充 ListBox.DataSource 的类型.该类型已覆盖 ToString(),但我似乎无法将其转换为 String[].
I want to convert the items to a String array or the type that I used to fill the ListBox.DataSource. The type has overridden ToString() but I can't seems to get it converted, not even to String[].
String[] a = (String[])ListBox1.Items;
Contacts[] b = (Contacts[])ListBox1.Items;
推荐答案
string[] a = ListBox1.Items.Cast<string>().ToArray();
当然,如果您打算对 a
做的只是对其进行迭代,则不必调用 ToArray().您可以直接使用 Cast
IEnumerable
,例如:
Of course, if all you plan to do with a
is iterate over it, you don't have to call ToArray(). You can directly use the IEnumerable<string>
returned from Cast<string>()
, e.g.:
foreach (var s in ListBox1.Items.Cast<string>()) {
do_something_with(s);
}
或者,如果你有办法将字符串转换为联系人,你可以这样做:
Or, if you have some way to convert strings to Contacts, you can do something like this:
IEnumerable<Contacts> c = ListBox1.Items.Cast<string>().Select(s => StringToContact(s));
这篇关于无法将 ListBox.ObjectCollection 转换为(类型化)数组的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:无法将 ListBox.ObjectCollection 转换为(类型化)数组
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- 如何用自己压缩一个 IEnumerable 2022-01-01
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- 输入按键事件处理程序 2022-01-01
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- C# 中多线程网络服务器的模式 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04