ImageMagick.DoubleMatrix.NativeDoubleMatrix.Dispose C# (CSharp) Method

Dispose() protected method

protected Dispose ( IntPtr instance ) : void
instance System.IntPtr
return void
      protected override void Dispose(IntPtr instance)
      {
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        NativeMethods.X64.DoubleMatrix_Dispose(instance);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        NativeMethods.X86.DoubleMatrix_Dispose(instance);
        #endif
      }
      public NativeDoubleMatrix(double[] values, int order)
DoubleMatrix.NativeDoubleMatrix