I want to add a \"Select One\" option to a drop down list bound to a List.
List
Once I query for the List, how do I add my in
Use Insert method of List:
List.Insert Method (Int32, T): Inserts an element into the List at the specified index.
Inserts
specified index
var names = new List { "John", "Anna", "Monica" }; names.Insert(0, "Micheal"); // Insert to the first element