I need to insert an object at the beginning of a collection.
My colleciton is of type List
How can I do this?
Take a look at the Insert() method
myList.Insert(0, [item to insert])