can you add item to the beginning of list c# code example
Example 1: c# add to start of list
myList.Insert(0, listItem);
Example 2: how to add item in list at first position c#
List<T>.Insert(0, item);
myList.Insert(0, listItem);
List<T>.Insert(0, item);