list add at the beginning c# code example
Example 1: c# add to start of list
myList.Insert(0, listItem);
Example 2: add variable to the beginning of a list c#
list.Insert(0, element);
myList.Insert(0, listItem);
list.Insert(0, element);