I want to extend image base class, but when I declare a subclass that inherits image I receive an error.
this is the code
Public Class ExtendedImage inherits Image
Sub New()
MyBase.New() <-- error Overload failed.
End Sub
end Class
How can I inherit this image class?
Thanks
Fabio
