gpt4 book ai didi

c# - 从复选框列表中获取项目字符串

转载 作者:太空宇宙 更新时间:2023-11-03 13:46:01 25 4
gpt4 key购买 nike

我想做这样的事情。

String s = "";
foreach (var item in checkedListBox1.Items)
{
s = checkedListBox1.Items(item).tostring;
// do something with the string
}

我想要列表框中项目的字符串

如何让它运行?

最佳答案

我还没有尝试过,但我认为这应该可行。

string s = "";
foreach (var item in checkedListBox1.Items)
{
s = item.ToString();
// do something with the string
}

关于c# - 从复选框列表中获取项目字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15312212/

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