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 List.Insert
List.Insert
While not relevant to your specific example, if performance is important also consider using LinkedList because inserting an item to the start of a List requires all items to be moved over. See When should I use a List vs a LinkedList.
LinkedList