heres my class:
but i get these error
"'Bitmap2' cannot inherit from class 'Bitmap' because 'Bitmap' is declared 'NotInheritable'"
so how can i use it in my class, without recreate entire class?
(what i want is add some nice tools to the Bitmap class)
Code:
Public Class Bitmap2
Inherits Bitmap
End Class
"'Bitmap2' cannot inherit from class 'Bitmap' because 'Bitmap' is declared 'NotInheritable'"
so how can i use it in my class, without recreate entire class?
(what i want is add some nice tools to the Bitmap class)