Computer Science, asked by bsvasanth6727, 1 year ago

What does the interface IEnumerable do in C#?

Answers

Answered by omegads04
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