CharEnumerator.GetHashCode() 方法
C# 中的 CharEnumerator.GetHashCode() 方法返回当前对象的哈希码。
语法
public virtual int GetHashCode ();
现在,让我们来看一个实现 CharEnumerator.GetHashCode() 方法的示例 −
示例
using System; public class Demo { public static void Main(){ string strNum = "john"; CharEnumerator ch = strNum.GetEnumerator(); Console.WriteLine("HashCode = "+ch.GetHashCode()); 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 = 30571253 j o h n
广告