Computer >> Máy Tính >  >> Lập trình >> C#

Phương thức CharEnumerator.Clone () trong C #

Phương thức CharEnumerator.Clone () trong C # được sử dụng để tạo bản sao của đối tượng CharEnumerator hiện tại.

Cú pháp

public object Clone();

Bây giờ chúng ta hãy xem một ví dụ để triển khai phương thức CharEnumerator.Clone () -

Ví dụ

using System;
public class Demo {
   public static void Main(){
      string strNum = "356";
      CharEnumerator ch = strNum.GetEnumerator();
      while (ch.MoveNext()){
         Console.Write(ch.Current + " ");
         CharEnumerator enumClone = (CharEnumerator)ch.Clone();
         while (enumClone.MoveNext())
            Console.Write(enumClone.Current + " ");
         Console.WriteLine();
      }
   }
}

Đầu ra

Điều này sẽ tạo ra kết quả sau -

3 5 6
5 6
6