gpt4 book ai didi

c# - 将 ListBox.SelectedObjectCollection 转换为 ListBox.ObjectCollection?

转载 作者:行者123 更新时间:2023-11-30 19:00:15 25 4
gpt4 key购买 nike

是否可以在 C# 中将 ListBox.SelectedObjectCollection 转换为 ListBox.ObjectCollection?如果是这样,我该怎么做?

最佳答案

我有一个接受 List<string> 的函数.

我可以通过转换来传递 SelectedItems 和 Items。

试试这个:

SelectedItems.Cast<string>().ToList()
Items.Cast<string>().ToList()

<string>可以替换为其他一些对象类型。

关于c# - 将 ListBox.SelectedObjectCollection 转换为 ListBox.ObjectCollection?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4074706/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com