-2

我有

string[] parts = {"Product", "Things"};

ListBox 包含的项目为

1.产品 2.物品 3.事物

我想将字符串从部件匹配到 ListBox 中的项目。如果匹配,我想在 ListBox 中选择该项目。
如何做到这一点?请帮帮我

4

1 回答 1

0
string[] parts = { "Product", "Things" };

for (int i = 0; i < parts.Length; i++)
{
    if (listBox1.Items.Count > i && parts[i] == listBox1.Items[i])
    {
        // match
    }
}
于 2013-09-16T12:42:26.557 回答