ImageMagick.MagickImage.NativeMagickImage.GetNextProfileName C# (CSharp) 메소드

GetNextProfileName() 공개 메소드

public GetNextProfileName ( ) : string
리턴 string
      public string GetNextProfileName()
      {
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        return UTF8Marshaler.NativeToManaged(NativeMethods.X64.MagickImage_GetNextProfileName(Instance));
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        return UTF8Marshaler.NativeToManaged(NativeMethods.X86.MagickImage_GetNextProfileName(Instance));
        #endif
      }
      public StringInfo GetProfile(string name)
MagickImage.NativeMagickImage