- IEnumerable is an interface available in the
System.Collection
namespace - Any collection that implements the IEnumerable implements the GetEnumerator method of the IEnumerable interface, making it iterable.
- The IEnumerable or the Generic IEnumerable must be used over in-memory objects.
What is an IEnumerable?
- IEnumerable is an interface available in the
System.Collection
namespace - Any collection that implements the IEnumerable implements the GetEnumerator method of the IEnumerable interface, making it iterable.
- The IEnumerable or the Generic IEnumerable must be used over in-memory objects.