C# 中的 CharEnumerator.Reset() 方法
C# 中的 CharEnumerator.Reset() 方法将索引初始化为枚举字符串的第一个字符之前的逻辑位置。
语法
public void Reset ();
示例
现在,我们来看一个实现 CharEnumerator.Reset() 方法的示例——
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()); while (ch.MoveNext()) Console.Write(ch.Current + " "); ch.Reset(); Console.WriteLine(); while (ch.MoveNext()) Console.Write(ch.Current); } }
输出
这将产生以下输出——
HashCode = 65311716 Get the Type = System.CharEnumerator T h i s i s i t ! This is it!
广告