How to search through all items of a combobox in C#? -


i have combobox, , search through every element in it.

how can this? (also number of items not same everytime, not important).

i using c# windows form application.

you can this

for (int = 0; < mycombobox.items.count; i++) {      string value = mycombobox.getitemtext(mycombobox.items[i]);  } 

Comments

Popular posts from this blog

c++ - Linked List error when inserting for the last time -

java - activate/deactivate sonar maven plugin by profile? -

java - What is the difference between String. and String.this. ? -