I have this list (Just a typical .net list) and im adding a bunch of UI Items into it, the list is then taken for a Sub which goes through it with .getenumarator and While loop.
Now the question is how are my items retrived from this list ???
is that First in First out OR Last in First out OR the answer is non of above and ive totaly lost it !! in which case perhaps I need different or more info on something else.
Help out if you can ….
Thanks
The Enumerator for List will go through the elements in the order they were added. So “FIFO” in case elements are added using .Add or .AddRange. But elements can of course also be inserted anywhere in the List using Insert.
See this similar question for more ‘proof’. (It’s not official!)