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
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
Related Q & A:
- How to set and get property value?Best solution by Stack Overflow
- If my neighbor's tree fell on my property and neighbor has no insurance, will insurance go after him?Best solution by Yahoo! Answers
- What's the best card in the 2009 topps baseball card set?Best solution by Yahoo! Answers
- What's like the most cost-effective set-up you need for recording music the right way?Best solution by Yahoo! Answers
- What's a good 8 piece drum set?Best solution by ChaCha
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
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.