CreateNativeInstance() 개인적인 메소드

private CreateNativeInstance ( ) : NativeMagickRectangle
리턴 NativeMagickRectangle
예제 #1
0
 internal static INativeInstance CreateInstance(MagickRectangle instance)
 {
     if (instance == null)
     {
         return(NativeInstance.Zero);
     }
     return(instance.CreateNativeInstance());
 }
예제 #2
0
 internal static INativeInstance CreateInstance(MagickRectangle instance)
 {
   if (instance == null)
     return NativeInstance.Zero;
   return instance.CreateNativeInstance();
 }