add first item in list c# code example
Example 1: how to insert into a list c#
var words = new List<string>();
// Warning: insterting into a List can be very slow
// Insert a string at index 3
names.Insert(3, "Hello!");
Example 2: how to add item in list at first position c#
List<T>.Insert(0, item);