我通過從數據庫創建列表動態填充winforms組合框。檢查項目是否在組合框列表中
List<string> locationList = new List<string>();
foreach(Data.DataSet.vwGet_RepListRow row in Data.Manager.TAM.RepListViewTableAdapter.GetData())
locationList.Add(row.Location_City);
this.LocationComboBox.DataSource = locationList;
我遇到的問題是,有現在一共有3個位置,但65名員工因此正在發生的事情是我得到在組合框中反覆城市。我如何編輯上面的內容來檢查新的Location_City是否已經不在locationList中?如果它不在那裏,然後添加它,但如果它在那裏,則跳過它。
任何幫助將是偉大的。
您還可以使用HashSet的;看我的編輯。 – 2010-11-11 14:46:34