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

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

python - TypeError: can only concatenate tuple (not "float") to tuple -

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