IEnumerable VS IList
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.
IList
- IList exists in System.Collections Namespace.
- IList is used to access an element in a specific position/index in a list.
- Like IEnumerable, IList is also best to query data from in-memory collections like List, Array etc.
- IList is useful when you want to Add or remove items from the list.
- IList can find out the no of elements in the collection without iterating the collection.
- IList supports deferred execution.
- IList doesn't support further filtering.
IEnumerable
- IEnumerable exists in System.Collections Namespace.
- IEnumerable can move forward only over a collection, it can’t move backward and between the items.
- IEnumerable is best to query data from in-memory collections like List, Array etc.
- IEnumerable doesn't support add or remove items from the list.
- Using IEnumerable we can find out the no of elements in the collection after iterating the collection.
- IEnumerable supports deferred execution.
- IEnumerable supports further filtering.
No comments:
Post a Comment