drawing.image类不能被继承
image类是一个必须被继承的基类,可是我在VB.NET中使用时:
Imports System.Drawing
Public Class Class1
Inherits Drawing.Image '这里显示错误image类没有SUB NEW不能被继承
End Class
可是MSDN中对image类的说明是:为源自 Bitmap 和 Metafile 的类提供功能的抽象基类
既然bitmap 和metafile可以继承为什么这里不行呢?bitmap类定义如下:
NotInheritable Public Class Bitmap
Inherits Image
为什么这里可以继承呢?