for(int i=0; i<this.comboBox.Items.Count - 1; i++) { for (int j = this.comboBox.Items.Count - 1; j>i; j--) { if (comboBox.Items[i] == comboBox.Items[j]) { comboBox.Items.RemoveAt(j); } } }