Difference between IList and IEnumerable?

Forums .NET CoreDifference between IList and IEnumerable?
Staff asked 2 years ago

Answers (1)

Add Answer
Staff answered 2 years ago

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 is a forward only 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.

Subscribe

Select Categories