I\'ve always thought otherwise, but recently I had the need to know:
If I add elements to a list in a certain order, am I guaranteed to find then always on the same
Yes. List is an indexed collection; using Add() to put elements into the List will cause them to be indexed in the order they're added.