I need to insert an object at the beginning of a collection.
My colleciton is of type List
How can I do this?
You can use the Insert method.
List strings = new List { "B", "C", "D" }; strings.Insert(0, "A");
MSDN documentation: http://msdn.microsoft.com/en-us/library/sey5k5z4.aspx