Please enable Javascript to correctly display the contents on Dot Net Tricks!
 
Become an Expert in C#, .NET, MVC, JAVA, PHP, AngularJS, Hadoop, Android, iphone, Testing etc.
by Joining our Training Programs and Take Your Career to the Next Level! To know more make a call on +91 98 71 749695

IEnumerable VS IList

Posted By : Shailendra Chauhan, 16 Jun 2012
Updated On : 01 May 2013
Total Views : 59,574   
 
Keywords : difference between IEnumerable and IList,when to use IList, IEnumerable, use, advantage of IEnumerable,IList, features of IEnumerable, IList pdf

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.

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.

 
Further Reading
 
About the Author
Hey! I'm Shailendra Chauhan full-time author, consultant & trainer. I have more than 6 years of hand over Microsoft .NET technologies and other web technologies like JavaScript, AngularJS, NodeJS etc. I am an entrepreneur, the founder & chief editor of www.dotnet-tricks.com and www.dotnettricks.com. I am author of most popular e-books for technical Interview on ASP.NET MVC Interview Questions and Answers & AngularJS Interview Questions and Answers & LINQ Interview Questions and Answers.
I have delivered 100+ training sessions to professional world-wide over Microsoft .NET technologies such C#, ASP.NET MVC, WCF, Entity Framework and other mobile technologies such Ionic, PhoneGap, Corodva. Read more...
 
Free Interview Books
 
SUBSCRIBE & FOLLOW US
 
Browse By Category
 
 
Like us on Facebook