예제 #1
0
파일: Graphics.cs 프로젝트: sbarisic/Kernel
 public void Dispose()
 {
     if (this.native != IntPtr.Zero)
     {
         LibIGraph.DisposeGraphics(this.native);
         this.native = IntPtr.Zero;
         GC.SuppressFinalize(this);
     }
 }