Hello everyone haven't posted in a while. Like the title says the topic I am wondering about is List<T> vs Arrays. From the information I've gathered List<T> seems to be a more versatile function than an array. From what I've read on the topic array's are faster. I would think the sort function and easy expandable list outweigh the speed of the array.

My question is would there be a time where array's are preferred over a List<T> or is it just in the programmers interest on which one to use?

Thanks in advanced as I am sure the question has been asked plenty of times.