You cannot, but you can use linq to simulate AddRange
Try writing something like this:
ComboBox combo; String[] arrOperator = new String[] { "=", "<", "<=", ">", ">=", "<>" }; combo = new ComboBox(); arrOperator.ToList().ForEach(item => comboRetVal.Items.Add(item));
source share