I am using c# 4.0 have following line of code:
comboBox.Items.AddRange(all);
comboBox.Items.Remove("abc");
Is there a better way to write this? Like can this be written in one line? So that even before adding abc comboBox can check for this and dont add it at first place?
Using Linq: