VOOZH about

URL: https://www.geeksforgeeks.org/c-sharp/getting-an-enumerator-that-iterates-through-the-stack-in-c-sharp/

⇱ Getting an enumerator that iterates through the Stack in C# - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Getting an enumerator that iterates through the Stack in C#

Last Updated : 11 Jul, 2025
Stack<T>.GetEnumerator Method is used to get an IEnumerator that iterates through the Stack. And it comes under the System.Collections.Generic namespace. Syntax:
public System.Collections.Generic.Stack<T>.Enumerator GetEnumerator ();
Below programs illustrate the use of the above-discussed method: Example 1:
Output:
GeeksforGeeks
Data Structures
Noida
Geeks Classes
Geeks
Example 2:
Output:
6
5
4
3
2
Note:
  • The foreach statement of the C# language hides the complexity of the enumerators. Therefore, using foreach is recommended, instead of directly manipulating the enumerator.
  • Enumerators can be used to read the data in the collection, but they cannot be used to modify the underlying collection.
  • Current returns the same object until either MoveNext or Reset is called. MoveNext sets Current to the next element.
  • An enumerator remains valid as long as the collection remains unchanged. If changes are made to the collection, such as adding, modifying, or deleting elements, the enumerator is irrecoverably invalidated and its behavior is undefined.
  • This method is an O(1) operation.
Reference:
Comment

Explore