How to Override a private set property?

Cannot override property's protected set

  • I have the following base class: abstract class Base { public abstract object Var { get; protected set; } } And this derived class: class Derived : Base { public override object Var { get {//code here } set {//code here -- I get error here! } } } But I'm getting this error: Cannot change access modifier when overriding 'protected' inherited member 'Var' I tried adding a protected and private keywords before set but it didn't help. How do I fix this? UPDATE: The base class must make sure that subclasses provide a value for Var at creation time. So I need to have the setter declared in Base class. Alternatively, I could declare a private member variable to do this and remove the setter, but that is not an option as discussed http://stackoverflow.com/q/8466706/279982.

  • Answer:

    The problem is that the set in your derived class has public visiblity–since you didn't specify protected explicitly. Since this property's set has protected visibility in your base class, you're getting the error cannot change access modifiers when overriding 'protected' inherited member You can fix it by giving the set protected visibility in your derived class: class Derived : Base { public override object Var { get { return null; } protected set { // <------ added protected here } } }

AtoMerZ at Stack Overflow Visit the source

Was this solution helpful to you?

Other answers

If you don't specify a setter in your abstract class, you can specify one in the inheriting class: abstract class Base { public abstract object Var { get; } } class Derived : Base { public override object Var { get; set; } } Alternatively, declare it as public. This happens because you cannot make a member of an inheriting class more accessible than how it was declared. The default access modifier of properties is public which is more accessible than protected.

Oded

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.