C# 中的 CharEnumerator.GetType() 方法
C# 中的 CharEnumerator.GetType() 方法用于获取当前实例的类型。
语法
public Type GetType();
我们现在来看一个例子,该例子演示了如何实现 CharEnumerator.GetType() 方法 −
示例
using System; public class Demo { public static void Main(){ string strNum = "john"; CharEnumerator ch = strNum.GetEnumerator(); Console.WriteLine("HashCode = "+ch.GetHashCode()); Console.WriteLine("Get the Type = "+ch.GetType()); while (ch.MoveNext()) Console.Write(ch.Current + " "); // disposed ch.Dispose(); // this will show an error since we disposed the object above // Console.WriteLine(ch.Current); } }
输出
此示例将产生以下输出 −
HashCode = 1373506 Get the Type = System.CharEnumerator j o h n
广告