✅ Override (abstract) getter-only property with a setter
Hello! I was wondering if there is anyway to add a setter to an overridden getter-only property?
Currently, I've tried the following:
I'd prefer avoiding a constructor, since the rest of my hierarchy uses
Currently, I've tried the following:
I'd prefer avoiding a constructor, since the rest of my hierarchy uses
required properties, and Derived is actually sub-classed elsewhere, so adding a constructor would make things a bit clunky...