A ile ilişkili açılır listeye "Birini Seçin" seçeneği eklemek istiyorum List<T>
.
Bir kez sorgu , veri kaynağının bir parçası değil, List<T>
benim ilk nasıl Item
İLK öğesi olarak ekleyebilirim List<T>
? Sahibim:
// populate ti from data
List<MyTypeItem> ti = MyTypeItem.GetTypeItems();
//create initial entry
MyTypeItem initialItem = new MyTypeItem();
initialItem.TypeItem = "Select One";
initialItem.TypeItemID = 0;
ti.Add(initialItem) <!-- want this at the TOP!
// then
DropDownList1.DataSource = ti;
This method is an O(n) operation, where n is Count.