Try using
collection.Insert(0, item);
This would add item to the beginning of the collection (while Add adds to the end). More info here.
Try using
collection.Insert(0, item);
This would add item to the beginning of the collection (while Add adds to the end). More info here.