C# | CharEnumerator.ToString() Method Last Updated : 11 Jul, 2025 Comments Improve Suggest changes Like Article Like Report 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 illustrate the use of CharEnumerator.ToString() Method: Example 1: csharp // C# program to illustrate the // use of CharEnumerator.ToString() // Method using System; class GFG { // Driver code public static void Main() { // Initialize a string object string str = "GeeksforGeeks is Awesome!!"; // Instantiate a CharEnumerator object CharEnumerator chEnum = str.GetEnumerator(); // Printing the Type of // the CharEnumerator objects Console.WriteLine(chEnum.ToString().GetType()); } } Output: System.String Example 2: csharp // C# program to illustrate the // use of CharEnumerator.ToString() // Method using System; class GFG { // Driver code public static void Main() { // Initialize a string object string str = "GeeksforGeeks Ranking - 50!"; // Instantiate a CharEnumerator object CharEnumerator chEnum = str.GetEnumerator(); // Instantiate a clone of CharEnumerator object CharEnumerator chEnumClone = (CharEnumerator)chEnum.Clone(); // Printing the Type of the // CharEnumerator objects // and its clone Console.WriteLine("Type of CharEnumerator Object: " + chEnum.ToString().GetType()); Console.WriteLine("Type of CharEnumerator clone Object: " + chEnumClone.ToString().GetType()); } } Output: Type of CharEnumerator Object: System.String Type of CharEnumerator clone Object: System.String Comment More infoAdvertise with us Next Article C# | CharEnumerator.MoveNext() 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# | Char.ToString() Method In C#, Char.ToString() is a System.Char struct method which is used to convert the value of this instance to its equivalent string representation. This method can be overloaded by passing different type of arguments to it. Char.ToString(IFormatProvider) Method Char.ToString(Char) Method Char.ToStrin 2 min read C# | CharEnumerator.MoveNext() Method 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 w 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.GetHashCode() Method GetHashCode() Method serves as the default hash function and returns a hash code for the current object. This method is inherited from the Object class. Syntax: public virtual int GetHashCode (); Return Value: This method returns an Int32 value corresponding to the hash code of the current object. B 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 Like