ImageMagick.MagickFormatInfo.NativeMagickFormatInfo.GetInfo C# (CSharp) Method

GetInfo() public method

public GetInfo ( IntPtr list, int index ) : void
list System.IntPtr
index int
return void
      public void GetInfo(IntPtr list, int index)
      {
        IntPtr exception = IntPtr.Zero;
        IntPtr result;
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        result = NativeMethods.X64.MagickFormatInfo_GetInfo(list, (UIntPtr)index, out exception);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        result = NativeMethods.X86.MagickFormatInfo_GetInfo(list, (UIntPtr)index, out exception);
        #endif
        CheckException(exception);
        Instance = result;
      }
      public void GetInfoByName(string name)