IEnumerable VS IList

07 Sep 2022
Intermediate
26.7K Views

In LINQ to query data from collections, we use IEnumerable and IList for data manipulation. IEnumerable is inherited by IList, hence it has all the features of it and except this, it has its own features. IList has below advantage over IEnumerable. In previous article, I explain the difference between IEnumerable and IQueryable.

IList

  1. IList exists in System.Collections Namespace.

  2. IList is used to access an element in a specific position/index in a list.

  3. Like IEnumerable, IList is also best to query data from in-memory collections like List, Array etc.

  4. IList is useful when you want to Add or remove items from the list.

  5. IList can find out the no of elements in the collection without iterating the collection.

  6. IList supports deferred execution.

  7. IList doesn't support further filtering.

IEnumerable

  1. IEnumerable exists in System.Collections Namespace.

  2. IEnumerable can move forward only over a collection, it can’t move backward and between the items.

  3. IEnumerable is best to query data from in-memory collections like List, Array etc.

  4. IEnumerable doesn't support add or remove items from the list.

  5. Using IEnumerable we can find out the no of elements in the collection after iterating the collection.

  6. IEnumerable supports deferred execution.

  7. IEnumerable supports further filtering.

Read More Articles Related to LINQ
Summary

In this article I try to explain the difference between IEnumerable and ILIst. I hope after reading this article you will be able to boost your LINQ query performance. I would like to have feedback from my blog readers. Please post your feedback, question, or comments about this article.

Learn to Crack Your Technical Interview

Accept cookies & close this