I have a few general questions about the Collections class in C#:"
Because all elements in an ArrayList are stored as objects do we need to cast them into their respective types before extracting?
Array lists are used if the size is adjusted accordinly to elements added and the types do not need to be defined, is this the only advantage over standard arrays? if not then what are some other advantages?
Apart from the reason for not knowing the size or types of data to be added, when would we use array lists over standard arrays?
Thankyou for you time