Is it bad form to return Arrays in C#? Should I return List?

后端 未结 7 1080
南方客
南方客 2020-12-14 20:31

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

7条回答
  •  清歌不尽
    2020-12-14 21:31

    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.

提交回复
热议问题