Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a class ClassA that is a base class of other classes. I want this class constructor to be internal and protected so that it can't be inherited and instantiated from outside of my assembly (I can't make it sealed because I have other internal classes inheriting from it, you can see my other related question here) so I modified it to be like this:

public abstract ClassA{
    internal protected ClassA(){
    }
}

I have been told that this won't work as the combination internal protected is interpreted as internal OR protected which apparently makes the constructor only protected :( (visible from the outside)

Questions

  1. If that is true, why is internal protected interpreted as internal OR protected and not as internal AND protected?
  2. Is there a way I can declare a constructor internal and protected?
share|improve this question

3 Answers

up vote 5 down vote accepted

Specifying internal is enough.

It's an abstract class - it's implied that its constructor is protected because you can't make an instance of it - you can do nothing BUT inherit it.

share|improve this answer

If you specify the constructor as internal it will be visible for all classes in your assembly and will not be visible to classes outside of it, which is exactly what you want to achieve. In short if a constructor or a class member of class A is:

  • Protected - visible to all classes that inherit from A in its and in any other assembly
  • Internal - visible to all classes in class A's assembly
  • Protected Internal - visible to all classes that inherit from A in its and in any other assembly and to all classes in A's assembly

So in you case you only need to specify the constructor as internal.

share|improve this answer

Did you try ?

Msdn tell us that

Constructors can be marked as public, private, protected, internal, or protected internal.

http://msdn.microsoft.com/en-us/library/ms173115%28v=vs.100%29.aspx

share|improve this answer
Yes I did try it and got confused, hence my question :) – GETah Jun 26 '12 at 8:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.