我想做这样的事情。
String s = "";
foreach (var item in checkedListBox1.Items)
{
s = checkedListBox1.Items(item).tostring;
// do something with the string
}
我想拥有列表框中项目的string
。
如何让它运行?
答案 0 :(得分:1)
我还没有尝试,但我认为这应该有用。
string s = "";
foreach (var item in checkedListBox1.Items)
{
s = item.ToString();
// do something with the string
}
答案 1 :(得分:0)
string s = "";
foreach (string item in checkedListBox1.Items)
{
s = item;
// do something with the string
}
答案 2 :(得分:0)
我相信你要找的是:
foreach (var item in checkedListBox1.Items)
{
checkedListBox1.GetItemText(item);
}
可能不是最有用的,但here is the MSDN适用于它。