Quiero agregar una opción "Seleccionar uno" a una lista desplegable vinculada a un List<T>
.
Una vez que pregunto por List<T>
, ¿cómo agrego mi inicial Item
, no parte de la fuente de datos, como el PRIMER elemento en eso List<T>
? Yo tengo:
// 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.