C# | CharEnumerator.MoveNext() Method Last Updated : 11 Jul, 2025 Comments Improve Suggest changes Like Article Like Report CharEnumerator.MoveNext() Method is used to increments the internal index of the current CharEnumerator object to the next character of the enumerated string. Syntax: public bool MoveNext(); Return Value: This method returns the boolean value true value if the index is successfully incremented and within the enumerated string otherwise, false. Below are the programs to illustrate the use of CharEnumerator.MoveNext() Method: Example 1: csharp // C# program to illustrate the // use of CharEnumerator.MoveNext() // Method using System; class GFG { // Driver code public static void Main() { // Initialize a string object string str = "A Computer Science Portal for Geeks!"; // Instantiate a CharEnumerator object CharEnumerator chEnum = str.GetEnumerator(); // Printing the string while (chEnum.MoveNext()) { Console.Write(chEnum.Current); } } } Output: A Computer Science Portal for Geeks! Example 2: csharp // C# program to illustrate the // use of CharEnumerator.MoveNext() // Method using System; class GFG { // Driver code public static void Main() { // Initialize a string object string str = "Best Data Structure and Algorithms Tutorials!"; // Instantiate a CharEnumerator object CharEnumerator chEnum = str.GetEnumerator(); // Printing the string while (chEnum.MoveNext()) { if (chEnum.Current == ' ') { Console.WriteLine(); continue; } Console.Write(chEnum.Current); } } } Output: Best Data Structure and Algorithms Tutorials! Reference: https://learn.microsoft.com/en-us/dotnet/api/system.charenumerator.movenext?view=netframework-4.7.2 Comment More infoAdvertise with us Next Article C# | CharEnumerator.ToString() Method R rupesh_rao Follow Improve Article Tags : C# CSharp-method CSharp-CharEnumerator-Class Similar Reads C# | CharEnumerator.Reset() Method CharEnumerator.Reset Method is used to initializes the index to a position logically before the first character of the enumerated string. Syntax: public void Reset (); Below are the programs to illustrate the use of CharEnumerator.Reset() Method: Example 1: csharp // C# program to illustrate the // 2 min read C# | CharEnumerator.ToString() Method CharEnumerator.ToString() Method is used to get a string that represents the current object. It is inherited from the Object Class. Syntax: public virtual string ToString(); Return Value: This method returns a string which represents the current CharEnumerator object. Below are the programs to illus 2 min read C# | CharEnumerator.Clone() Method CharEnumerator.Clone Method is used to create a copy of the current CharEnumerator object. This is useful for saving the current state while iterating through a String object. Syntax: public object Clone (); Return Value: This method returns an Object which is a copy of the current CharEnumerator ob 2 min read C# | CharEnumerator.Dispose() Method This method is used to releases all resources used by the current instance of the CharEnumerator class. The Dispose() method leaves the CharEnumerator in an unusable state. So, this method should be called when a user finished their working with the CharEnumerator. Syntax: public void Dispose (); Re 2 min read C# | CharEnumerator.GetType() Method CharEnumerator.GetType() Method is used to get the type of the current instance. This method is inherited from the Object Class. Syntax: public Type GetType(); Return Value: This method returns the exact runtime type of the current instance. Below are the programs to illustrate the use of CharEnumer 2 min read Queue.GetEnumerator Method in C# This method returns an enumerator that iterates through the Queue. And it comes under the System.Collections namespace. Syntax: public virtual System.Collections.IEnumerator GetEnumerator (); Below programs illustrate the use of above-discussed method: Example 1: csharp // C# code to illustrate the 2 min read Like