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

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

Phương thức CharEnumerator.Dispose () trong C # được sử dụng để giải phóng tất cả các tài nguyên được sử dụng bởi phiên bản hiện tại của lớp CharEnumerator.

Cú pháp

public void Dispose ();

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

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 + " ");
      // disposed
      ch.Dispose();
      // this will show an error since we disposed the object above
      // Console.WriteLine(ch.Current);
   }
}

Đầu ra

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

3 5 6