I have a class that inherits from a more general class. The more general class accepts a name parameter in its constructor because the name property is read only. VB.NET tells me that I have to implement a constructor because it can't inherit it, but I don't know how to get the name property into the base class.
I know that I can just make the property read write but I want to be anal about this
. any suggestions?
I know that I can just make the property read write but I want to be anal about this