what is difference between Ienumerable and IList in c#
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.
You use IEnumerable when you want to loop through the items in a collection. IList is when you want to add, remove, and access the list contents out of order.
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.
Comments
Post a Comment