#region 程序集 System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
// C:Program Files (x86)Reference AssembliesMicrosoftFramework.NETFrameworkv4.5.2System.Drawing.dll
#endregion
using System.ComponentModel;
using System.Runtime;
namespace System.Drawing.Imaging
{
[TypeConverter(typeof(ImageFormatConverter))]
public sealed class ImageFormat
{
public ImageFormat(Guid guid);
public static ImageFormat MemoryBmp { get; }
public static ImageFormat Bmp { get; }
public static ImageFormat Emf { get; }
public static ImageFormat Wmf { get; }
public static ImageFormat Gif { get; }
public static ImageFormat Jpeg { get; }
public static ImageFormat Png { get; }
public static ImageFormat Tiff { get; }
public static ImageFormat Exif { get; }
public static ImageFormat Icon { get; }
public Guid Guid { get; }
[TargetedPatchingOptOut("Performance critical to inline across NGen image boundaries")]
public override bool Equals(object o);
public override int GetHashCode();
public override string ToString();
}
}