Skip to content
geeksforgeeks
  • Courses
    • DSA to Development
    • Get IBM Certification
    • Newly Launched!
      • Master Django Framework
      • Become AWS Certified
    • For Working Professionals
      • Interview 101: DSA & System Design
      • Data Science Training Program
      • JAVA Backend Development (Live)
      • DevOps Engineering (LIVE)
      • Data Structures & Algorithms in Python
    • For Students
      • Placement Preparation Course
      • Data Science (Live)
      • Data Structure & Algorithm-Self Paced (C++/JAVA)
      • Master Competitive Programming (Live)
      • Full Stack Development with React & Node JS (Live)
    • Full Stack Development
    • Data Science Program
    • All Courses
  • Tutorials
    • Data Structures & Algorithms
    • ML & Data Science
    • Interview Corner
    • Programming Languages
    • Web Development
    • CS Subjects
    • DevOps And Linux
    • School Learning
  • Practice
    • Build your AI Agent
    • GfG 160
    • Problem of the Day
    • Practice Coding Problems
    • GfG SDE Sheet
  • Contests
    • Accenture Hackathon (Ending Soon!)
    • GfG Weekly [Rated Contest]
    • Job-A-Thon Hiring Challenge
    • All Contests and Events
  • C# Data Types
  • C# Decision Making
  • C# Methods
  • C# Delegates
  • C# Constructors
  • C# Arrays
  • C# ArrayList
  • C# String
  • C# Tuple
  • C# Indexers
  • C# Interface
  • C# Multithreading
  • C# Exception
Open In App
Next Article:
Getting an enumerator that iterates through the Stack in C#
Next article icon

C# | Getting an enumerator that iterates through LinkedList<T>

Last Updated : 01 Feb, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
LinkedList<T>.GetEnumerator Method is used to get an enumerator that iterates through the LinkedList<T>. Syntax:
public System.Collections.Generic.LinkedList<T>.Enumerator GetEnumerator ();
Return Value: It returns an LinkedList<T>.Enumerator for the LinkedList<T>. Below programs illustrate the use of above-discussed method: Example 1: CSharp
// C# code to get an enumerator that // iterates through the LinkedList<T> using System; using System.Collections.Generic;  class GFG {      // Driver code     public static void Main()     {          // Creating a LinkedList of Integers         LinkedList<int> myList = new LinkedList<int>();          // Adding nodes in LinkedList         myList.AddLast(2);         myList.AddLast(4);         myList.AddLast(6);         myList.AddLast(8);          // To get an Enumerator         // for the List.         LinkedList<int>.Enumerator em = myList.GetEnumerator();         display(em);     }      // display method     static void display(IEnumerator<int> em)     {         while (em.MoveNext()) {             int val = em.Current;             Console.WriteLine(val);         }     } } 
Output:
  2  4  6  8  
Example 2: CSharp
// C# code to get an enumerator that // iterates through the LinkedList<T> using System; using System.Collections.Generic;  class GFG {      // Driver code     public static void Main()     {          // Creating a LinkedList of Strings         LinkedList<String> myList = new LinkedList<String>();          // Adding nodes in LinkedList         myList.AddLast("GeeksforGeeks");         myList.AddLast("GFG");         myList.AddLast("Data Structures");         myList.AddLast("Noida");          // To get an Enumerator         // for the LinkedList<T>.         LinkedList<string>.Enumerator em = myList.GetEnumerator();         display(em);     }      // display method     static void display(IEnumerator<string> em)     {         while (em.MoveNext()) {             string val = em.Current;             Console.WriteLine(val);         }     } } 
Output:
  GeeksforGeeks  GFG  Data Structures  Noida  
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:
  • https://docs.microsoft.com/en-us/dotnet/api/system.collections.generic.linkedlist-1.getenumerator?view=netframework-4.7.2

Next Article
Getting an enumerator that iterates through the Stack in C#

K

Kirti_Mangal
Improve
Article Tags :
  • C#
  • CSharp-Generic-Namespace
  • CSharp-LinkedList
  • CSharp-LinkedList-Methods

Similar Reads

  • C# | Getting an enumerator that iterates through HashSet<T>
    HashSet<T>.GetEnumerator Method is used to get an enumerator that iterates through a HashSet object. Syntax: public System.Collections.Generic.HashSet<T>.Enumerator GetEnumerator (); Return Value: It returns a HashSet<T>.Enumerator object for the HashSet<T> object. Below prog
    2 min read
  • C# | Get an enumerator that iterates through the List
    List<T>.GetEnumerator Method is used to returns an enumerator that iterates through the List<T>. Syntax: public System.Collections.Generic.List<T>.Enumerator GetEnumerator (); Return Value: It returns an List<T>Enumerator for the List<T>. Below programs illustrate the u
    2 min read
  • C# | Get an enumerator that iterates through the SortedList
    SortedList.GetEnumerator Method is used to an IDictionaryEnumerator object that iterates through a SortedList object. Syntax: public virtual System.Collections.IDictionaryEnumerator GetEnumerator (); Return Value: This method returns an IDictionaryEnumerator object for the SortedList object. Below p
    3 min read
  • Getting an enumerator that iterates through the Stack in C#
    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-discuss
    2 min read
  • C# | Get an enumerator that iterates through Collection<T>
    Collection<T>.GetEnumerator Method is used to get an enumerator that iterates through the Collection<T>. Syntax: public System.Collections.Generic.IEnumerator<T> GetEnumerator (); Return Value: This method returns an IEnumerator<T> for the Collection<T>. Below programs
    2 min read
  • C# | Get an enumerator that iterates through the SortedSet
    SortedSet<T>.GetEnumerator Method is used to return an enumerator that iterates through the SortedSet<T>. Syntax: public System.Collections.Generic.SortedSet<T>.Enumerator GetEnumerator (); Return Value: This method returns an enumerator that iterates through the SortedSet<T>
    2 min read
  • Getting enumerator that iterates through the Queue in C#
    Queue<T>.GetEnumerator Method is used to get an enumerator which can iterate through the Queue. And it comes under the System.Collections.Generic namespace. Syntax: public System.Collections.Generic.Queue<T>.Enumerator GetEnumerator (); Below programs illustrate the use of the above-disc
    2 min read
  • C# | Copy the entire LinkedList<T> to Array
    LinkedList<T>.CopyTo(T[], Int32) method is used to copy the entire LinkedList<T> to a compatible one-dimensional Array, starting at the specified index of the target array. Syntax: public void CopyTo (T[] array, int index); Parameters: array : It is the one-dimensional Array that is the
    2 min read
  • C# | Get the first node of the LinkedList<T>
    LinkedList<T>.First property is used to get the first node of the LinkedList<T>. Syntax: public System.Collections.Generic.LinkedListNode First { get; } Return Value: The first LinkedListNode<T> of the LinkedList<T>. Below given are some examples to understand the implementat
    2 min read
  • C# | Get the number of nodes contained in LinkedList<T>
    LinkedList<T>.Count property is used to get the number of nodes actually contained in the LinkedList<T>. Syntax: public int Count { get; } Return Value: The number of nodes actually contained in the LinkedList. Note: Retrieving the value of this property is an O(1) operation. Below given
    2 min read
geeksforgeeks-footer-logo
Corporate & Communications Address:
A-143, 7th Floor, Sovereign Corporate Tower, Sector- 136, Noida, Uttar Pradesh (201305)
Registered Address:
K 061, Tower K, Gulshan Vivante Apartment, Sector 137, Noida, Gautam Buddh Nagar, Uttar Pradesh, 201305
GFG App on Play Store GFG App on App Store
Advertise with us
  • Company
  • About Us
  • Legal
  • Privacy Policy
  • In Media
  • Contact Us
  • Advertise with us
  • GFG Corporate Solution
  • Placement Training Program
  • Languages
  • Python
  • Java
  • C++
  • PHP
  • GoLang
  • SQL
  • R Language
  • Android Tutorial
  • Tutorials Archive
  • DSA
  • Data Structures
  • Algorithms
  • DSA for Beginners
  • Basic DSA Problems
  • DSA Roadmap
  • Top 100 DSA Interview Problems
  • DSA Roadmap by Sandeep Jain
  • All Cheat Sheets
  • Data Science & ML
  • Data Science With Python
  • Data Science For Beginner
  • Machine Learning
  • ML Maths
  • Data Visualisation
  • Pandas
  • NumPy
  • NLP
  • Deep Learning
  • Web Technologies
  • HTML
  • CSS
  • JavaScript
  • TypeScript
  • ReactJS
  • NextJS
  • Bootstrap
  • Web Design
  • Python Tutorial
  • Python Programming Examples
  • Python Projects
  • Python Tkinter
  • Python Web Scraping
  • OpenCV Tutorial
  • Python Interview Question
  • Django
  • Computer Science
  • Operating Systems
  • Computer Network
  • Database Management System
  • Software Engineering
  • Digital Logic Design
  • Engineering Maths
  • Software Development
  • Software Testing
  • DevOps
  • Git
  • Linux
  • AWS
  • Docker
  • Kubernetes
  • Azure
  • GCP
  • DevOps Roadmap
  • System Design
  • High Level Design
  • Low Level Design
  • UML Diagrams
  • Interview Guide
  • Design Patterns
  • OOAD
  • System Design Bootcamp
  • Interview Questions
  • Inteview Preparation
  • Competitive Programming
  • Top DS or Algo for CP
  • Company-Wise Recruitment Process
  • Company-Wise Preparation
  • Aptitude Preparation
  • Puzzles
  • School Subjects
  • Mathematics
  • Physics
  • Chemistry
  • Biology
  • Social Science
  • English Grammar
  • Commerce
  • World GK
  • GeeksforGeeks Videos
  • DSA
  • Python
  • Java
  • C++
  • Web Development
  • Data Science
  • CS Subjects
@GeeksforGeeks, Sanchhaya Education Private Limited, All rights reserved
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our Cookie Policy & Privacy Policy
Lightbox
Improvement
Suggest Changes
Help us improve. Share your suggestions to enhance the article. Contribute your expertise and make a difference in the GeeksforGeeks portal.
geeksforgeeks-suggest-icon
Create Improvement
Enhance the article with your expertise. Contribute to the GeeksforGeeks community and help create better learning resources for all.
geeksforgeeks-improvement-icon
Suggest Changes
min 4 words, max Words Limit:1000

Thank You!

Your suggestions are valuable to us.

What kind of Experience do you want to share?

Interview Experiences
Admission Experiences
Career Journeys
Work Experiences
Campus Experiences
Competitive Exam Experiences