ImageMagick.ConnectedComponent.NativeConnectedComponent.GetY C# (CSharp) Метод

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

public static GetY ( IntPtr instance ) : int
instance System.IntPtr
Результат int
      public static int GetY(IntPtr instance)
      {
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        return (int)NativeMethods.X64.ConnectedComponent_GetY(instance);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        return (int)NativeMethods.X86.ConnectedComponent_GetY(instance);
        #endif
      }
    }