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

C#의 CharEnumerator.MoveNext() 메서드

<시간/>

C#의 CharEnumerator.MoveNext() 메서드는 현재 CharEnumerator 개체의 내부 인덱스를 열거된 문자열의 다음 문자로 증가시키는 데 사용됩니다.

구문

public bool MoveNext ();

이제 CharEnumerator.MoveNext() 메서드를 구현하는 예를 살펴보겠습니다.

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