2013-09-16 55 views
-2

如何比較字符串數組與ListBox項目?

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

ListBox中包含的項目,如

1,產品2項3.事情

我要匹配部分字符串列表框中的項目。 如果匹配我想在列表框中選擇該項。
如何做到這一點??請幫我出去

回答

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

for (int i = 0; i < parts.Length; i++) 
{ 
    if (listBox1.Items.Count > i && parts[i] == listBox1.Items[i]) 
    { 
     // match 
    } 
}