ImageMagick.MagickImage.NativeMagickImage.GetNextArtifactName C# (CSharp) Метод

GetNextArtifactName() публичный Метод

public GetNextArtifactName ( ) : string
Результат string
      public string GetNextArtifactName()
      {
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        return UTF8Marshaler.NativeToManaged(NativeMethods.X64.MagickImage_GetNextArtifactName(Instance));
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        return UTF8Marshaler.NativeToManaged(NativeMethods.X86.MagickImage_GetNextArtifactName(Instance));
        #endif
      }
      public string GetNextAttributeName()
MagickImage.NativeMagickImage