我有
string[] parts = {"Product", "Things"};
ListBox包含
项1.Product 2. Items 3. Things
我想将部件中的字符串与ListBox中的项匹配。 如果它匹配我想在ListBox中选择该项 怎么实现这个?请帮帮我
答案 0 :(得分:0)
string[] parts = { "Product", "Things" };
for (int i = 0; i < parts.Length; i++)
{
if (listBox1.Items.Count > i && parts[i] == listBox1.Items[i])
{
// match
}
}