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

Message() public static method

public static Message ( IntPtr exception ) : string
exception System.IntPtr
return string
      public static string Message(IntPtr exception)
      {
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        return UTF8Marshaler.NativeToManaged(NativeMethods.X64.MagickExceptionHelper_Message(exception));
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        return UTF8Marshaler.NativeToManaged(NativeMethods.X86.MagickExceptionHelper_Message(exception));
        #endif
      }
      public static IntPtr Related(IntPtr exception, int index)
MagickExceptionHelper.NativeMagickExceptionHelper