ImageMagick.MagickImage.NativeMagickImage.GetNext C# (CSharp) Method

GetNext() public static method

public static GetNext ( IntPtr image ) : IntPtr
image IntPtr
return IntPtr
      public static IntPtr GetNext(IntPtr image)
      {
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        return NativeMethods.X64.MagickImage_GetNext(image);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        return NativeMethods.X86.MagickImage_GetNext(image);
        #endif
      }
      public string GetNextArtifactName()
MagickImage.NativeMagickImage