我现在遇到这样一个问题,有个类,他里面一个Bitmap,提供一个Bitmap属性:
public int Bitmap
{
  get
    {
      return m_hBitmap.ToInt32();
    }
}
上面是那个类中的属性。
我在外面要取出这个Bitmap,应该怎么来实现?代码该怎么写。
我用的开发语言是 C#