ImageMagick.MagickExceptionHelper.NativeMagickExceptionHelper.RelatedCount C# (CSharp) Method

RelatedCount() public static method

public static RelatedCount ( IntPtr exception ) : int
exception System.IntPtr
return int
      public static int RelatedCount(IntPtr exception)
      {
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        return (int)NativeMethods.X64.MagickExceptionHelper_RelatedCount(exception);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        return (int)NativeMethods.X86.MagickExceptionHelper_RelatedCount(exception);
        #endif
      }
      public static int Severity(IntPtr exception)
MagickExceptionHelper.NativeMagickExceptionHelper