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

GetNext() публичный статический Метод

public static GetNext ( IntPtr image ) : IntPtr
image IntPtr
Результат 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