I have a function which returns a variable number of elements, should I return an array or a List? The \"collection\'s\" size does not change once returned, ie for all purpo
It is easy to get an array from an IList if an array is what you need, but the reverse is not true. So returning an IList is preferable.