CharEnumerator.GetHashCode() Method in C#


The CharEnumerator.GetHashCode() method in C# returns a hash code for the current object.

Syntax

public virtual int GetHashCode ();

Let us now see an example to implement the CharEnumerator.GetHashCode() method −

Example

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);
   }
}

Output

This will produce the following output −

HashCode = 30571253
j o h n

Updated on: 04-Nov-2019

24 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements