C#中的CharEnumerator.ToString()方法获取代表当前对象的字符串。
以下是语法-
public virtual string ToString();
现在让我们看一个实现CharEnumerator.ToString()方法的示例-
using System; public class Demo { public static void Main(){ string strNum = "This is it!"; CharEnumerator ch = strNum.GetEnumerator(); Console.WriteLine("HashCode = "+ch.GetHashCode()); Console.WriteLine("Get the Type = "+ch.GetType()); Console.WriteLine("\nString representation = "+ch.ToString()); while (ch.MoveNext()) Console.Write(ch.Current + " "); ch.Reset(); Console.WriteLine(); while (ch.MoveNext()) Console.Write(ch.Current); } }
输出结果
这将产生以下输出-
HashCode = 31020903 Get the Type = System.CharEnumerator String representation = System.CharEnumerator T h i s i s i t ! This is it!