What is difference between ienumerable and enumerable in c#?
Answer Posted / Nuzhat Raza
"IEnumerable is an interface that defines a method (GetEnumerator) for retrieving the elements of a collection one at a time. IEnumerator, on the other hand, is an interface for moving through the elements of a collection using a MoveNext() and Current property."
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers