Computer >> 컴퓨터 >  >> 프로그램 작성 >> C#

C#의 CharEnumerator.ToString() 메서드

<시간/>

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!