vote up 21 vote down star
11

Can anyone explain to me why I would want to use IList over List in C#?

Related question: Why is it considered bad to expose List<T>

flag

52% accept rate

10 Answers

vote up 28 vote down check

If you are exposing your class through a library that others will use, you generally want to expose it via interfaces rather than concrete implementations. This will help if you decide to change the implementation of your class later to use a different concrete class. In that case the user's of your library won't need to update their code since the interface doesn't change.

If you are just using it internally, you may not care so much, and using List<T> may be ok.

link|flag
I'm not understanding the (subtle) difference, is there some example you could point me to? – StingyJack Dec 30 '08 at 12:54
Say you had originally used List<T> and wanted to change to use a specialized CaseInsensitiveList<T>, both of which implement IList<T>. If you use the concrete type all callers need to be updated. If exposed as IList<T> the caller doesn't have to be changed. – tvanfosson Dec 30 '08 at 13:07
Ah. OK. I get that. Picking the lowest common denominator for a contract. Thanks! – StingyJack Dec 30 '08 at 13:34
This principle is an example of encapsulation, one of the three pillars of object-oriented programming. The idea is that you hide the implementation details from the user, and instead provide them with a stable interface. This is to reduce dependency on details that might change in the future. – Jason Dec 30 '08 at 13:35
Note also that T[] : IList<T>, so that for performance reasons you could always swap from returning a List<T> from your procedure to returning a T[], and if the procedure is declared to return IList<T> (or perhaps ICollection<T>, or IEnumerable<T>) nothing else would need to be changed. – Justice Dec 30 '08 at 13:44
show 1 more comment
vote up 5 vote down

IList<T> is an interface so you can inherit another class and still implement IList<T> while inheriting List<T> prevents you to do so.

For example if there is a class A and your class B inherits it then you can't use List<T>

class A : B, IList<T> { ... }
link|flag
vote up 1 vote down

You would because defining an IList or an ICollection would open up for other implementations of your interfaces.

You might wantet to have a IOrderRepository that defines a collection of orders in either a IList or ICollection, then you could have different kinds of implementations provide a list of orders as long as they conform to "rules" defined by your IList or ICollection.

link|flag
vote up 8 vote down

A principle of TDD and OOP generally is programming to an interface not an implementation.

In this specific case since you're essentially talking about a language construct, not a custom one it generally won't matter, but say for example that you found List didn't support something you needed. If you had used IList in the rest of the app you could extend List with your own custom class and still be able to pass that around without refactoring.

The cost to do this is minimal, why not save yourself the headache later? It's what the interface principle is all about.

link|flag
vote up 2 vote down
public void Foo(IList<Bar> list)
{
     // Do Something with the list here.
}

In this case you could pass in any class which implements the IList<Bar> interface. If you used List<Bar> instead, only a List<Bar> instance could be passed in.

The IList<Bar> way is more loosely coupled than the List<Bar> way.

link|flag
vote up 3 vote down

The most important case for using interfaces over implementations is in the parameters to your API. If your API takes a List parameter, then anyone who uses it has to use List. If the parameter type is IList, then the caller has much more freedom, and can use classes you never heard about, which may not even have existed when your code was written.

link|flag
vote up 7 vote down

List< T > is a specific implementation of IList< T >, which is a container that can be addressed the same way as a linear array T[] using an integer index. When you specify IList as the type of the method's argument, you only specify that you need certain capabilities of the container.

For example, the interface specification does not enforce a specific data structure to be used. The implementation of List< T > happens to the same performance for accessing, deleting and adding elements as a linear array. However, you could imagine an implementation that is backed by a linked list instead, for which adding elements to the end is cheaper (constant-time) but random-access much more expensive. (Note that the .NET LinkedList< T > does not implement IList< T >.)

This example also tells you that there may be situations when you need to specify the implementation, not the interface, in the argument list: In this example, whenever you require a particular access performance characteristic. This is usually guaranteed for a specific implementation of a container (List< T > documentation: "It implements the IList< T > generic interface using an array whose size is dynamically increased as required.").

Additionally, you might want to consider exposing the least functionality you need. For example. if you don't need to change the content of the list, you should probably consider using IEnumerable< T >, which IList< T> extends.

link|flag
Regarding your last statement about using IEnumerable instead of IList. This is not always recommended, take WPF for example which will just create a wrapper IList object so will have an impact of perf - msdn.microsoft.com/en-us/library/… – HAdes Sep 11 at 10:26
vote up 9 vote down

Interface is a promise (or a contract).

As it is always with the promises - smaller the better.

link|flag
Not always better, just easier to keep! :) – Kirk Broadhurst Oct 5 at 23:17
vote up 3 vote down

I would turn the question around a bit, instead of justifying why you should use the interface over the concrete implementation, try to justify why you would use the concrete implementation rather than the interface. If you can't justify it, use the interface.

link|flag
Very interesting way of thinking about it. And a good way to think when programming - thanks. – Peanut Sep 9 at 7:39
vote up 2 vote down

The less popular answer is programmers like to pretend their software is going to be re-used the world over, when infact the majority of projects will be maintained by a small amount of people and however nice interface-related soundbites are, you're alluding yourself.

Architecture Astronauts. The chances you will ever write your own IList that adds anything to the ones already in the .NET framework are so remote that it's theoretical jelly tots reserved for "best practices".

Software astronauts

Obviously if you are being asked which you use in an interview, you say IList, smile, and both look pleased at yourselves for being so clever. Or for a public facing API, IList. Hopefully you get my point.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.