I wish to return an ordered list of items from a method. Should my return type be IEnumerable or IList?
|
There is a hierarchy here: You want to aim for the least possible coupling, so return an Return an |
|||||
|
|
It depends what you want to do with the result. If you need to get the count of items or get random access to individual items, go with an IList. If callers just want to iterate through the items then go with IEnumerable - but you should document whether or not the returned value will be evaluated lazily or not - many IEnumerable instances these days represent queries that will be executed when the collection is enumerated. To be on the safe side, if what you are returning won't be evaluated on demand, I'd go with IList. |
||||
|
Its easy, if the caller should only use it Readonly, use IEnumerable. as this is then also supports covariance (result can be casted to a base type) |
|||||||||||||
|
|
If you want to return an ordered list maybe you should return a SortedList. http://msdn.microsoft.com/en-us/library/system.collections.sortedlist.aspx You can associate an order with the objects. |
|||||||||||||||
|
|
Generally, it's better to return
However, if the consumer needs methods that aren't on But you can do Contains and indexing on |
|||||||||
|
|
IEnumerable is less specific than an IList, that is, IList has functions that IEnumerable does not. Compare the two to see if one has functions you need that the other does not. |
|||
|
|
|
An IList has the methods for changing the items (like Add), maybe you want to select between ICollection and IEnumerable. The ICollection extends IEnumerable and has the Count property available that can be useful. |
|||
|
|
IEnumerable<T>. – Henk Holterman Jul 5 '10 at 18:26