ImageMagick.MagickImage.NativeMagickImage.Clone C# (CSharp) Метод

Clone() публичный Метод

public Clone ( ) : IntPtr
Результат System.IntPtr
      public IntPtr Clone()
      {
        IntPtr exception = IntPtr.Zero;
        IntPtr result;
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        result = NativeMethods.X64.MagickImage_Clone(Instance, out exception);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        result = NativeMethods.X86.MagickImage_Clone(Instance, out exception);
        #endif
        CheckException(exception, result);
        return result;
      }
      public IntPtr CloneArea(int width, int height)
MagickImage.NativeMagickImage