What does the interface IEnumerable do in C#?
Answers
Answered by
0
IEnumerable is an interface defining a single method GetEnumerator() that returns an IEnumerator interface. It is the base interface for all non-generic collections that can be enumerated.
Similar questions