check if combobox has specified value

Solutions on MaxInterview for check if combobox has specified value by the best coders in the world

showing results for - "check if combobox has specified value"
Matteo
09 Jul 2018
1if (comboBox1.Items.Contains("some value"))
2{
3
4}
5