El método CharEnumerator.ToString() se usa para obtener una string que representa el objeto actual. Se hereda de la clase de objeto .
Sintaxis:
public virtual string ToString();
Valor devuelto: este método devuelve una string que representa el objeto CharEnumerator actual .
A continuación se muestran los programas para ilustrar el uso del método CharEnumerator.ToString() :
Ejemplo 1:
// 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()); } }
Producción:
System.String
Ejemplo 2:
// 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()); } }
Producción:
Type of CharEnumerator Object: System.String Type of CharEnumerator clone Object: System.String
Publicación traducida automáticamente
Artículo escrito por rupesh_rao y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA