I have an abstract class that defines a get, but not set, because as far as that abstract class is concerned, it needs only a get.
get
set
You cannot override the set accessor since the base class has no set accessor defined.
What you can do is use the new keyword to hide the base classes implementation, but that may not be what you want.
new