我已经看到很多关于将 a 的内容添加Array
到 a的内容ComboBox
,但反之则不然。我想把a中的内容ComboBox
加到aArray
中,再发给另一个方法进行处理。
我已经.Items.Count
确定了 的大小Array
,但我不知道如何循环浏览ComboBox
.
通过查看您对问题的评论,您可能想要:
var arr = ingredientComboBox.Items.Cast<Object>()
.Select(item => item.ToString()).ToArray();
string[] items = new string[currentComboBox.Items.Count];
for(int i = 0; i < currentComboBox.Items.Count; i++)
{
items[i] = currentComboBox.Items[i].ToString();
}