Dispose() 공개 메소드

public Dispose ( ) : void
리턴 void
예제 #1
0
 public static void DisposeCurrent()
 {
     if (head != null)
     {
         head.Dispose();
     }
 }
 public static void DisposeCurrent()
 {
     head?.Dispose();
 }
예제 #3
0
 public static void DisposeCurrent()
 {
     Current?.Dispose();
 }