Order List <T> and Other IEnumerables
3 answers
It will be implementation dependent. Here is a good overview of the various general collections. As for the implementation of List<T> , the enumeration will be performed in the same order in which the elements will be added.
+7
in the order of their insertion
This awkward language is in your question. List <> really supports inserts anywhere inside the list using the Insert () method. No, an enumeration creates a list order, not an insertion order. If the question would say "in the order they were added" (the "Add" method), then the answer will be "Yes."
+1