ImageMagick.MagickImage.NativeMagickImage.GetNextArtifactName C# (CSharp) Méthode

GetNextArtifactName() public méthode

public GetNextArtifactName ( ) : string
Résultat 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