using System; using System.Collections.Generic; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GeoSigmaDrawLib { /// /// /// public class MemoryImage { /// /// Gets or sets the BMP. /// /// /// The BMP. /// public Bitmap Bmp { get; set; } /// /// 图像句柄. /// /// /// The buffer. /// public IntPtr BmpHandle { get; set; } } }