ImageMagick.MagickExceptionHelper.NativeMagickExceptionHelper.Related C# (CSharp) Метод

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

public static Related ( IntPtr exception, int index ) : IntPtr
exception System.IntPtr
index int
Результат System.IntPtr
      public static IntPtr Related(IntPtr exception, int index)
      {
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        return NativeMethods.X64.MagickExceptionHelper_Related(exception, (UIntPtr)index);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        return NativeMethods.X86.MagickExceptionHelper_Related(exception, (UIntPtr)index);
        #endif
      }
      public static int RelatedCount(IntPtr exception)
MagickExceptionHelper.NativeMagickExceptionHelper