vote up 3 vote down star
1

As you may already know, the .NET Framework's protected internal access modifier works in a strange way: It doesn't mean the class is protected AND internal, it says the class is protected OR internal; that is, the modified class or member can be accessed from whitin the same assembly as well as from the same hierarchy.

So, knowing this: When would you use it? Can you give an example? Is there a good, illuminating usage example inside .NET Base Class Library?

flag

67% accept rate
I didn't know that. I always thought it was AND. – Bob King Oct 15 '08 at 15:36
It's what you imagine when you first read it. I think anyone might guess the same way. – Pablo Marambio Oct 15 '08 at 15:51
Yeah, it catches everyone out the first time, I think. – Jeff Yates Oct 15 '08 at 15:52
The AND/OR logic is a bit confusing. In C# members are private by default, and you can open access as needed. Public gives all access, protected gives access to derived classes, and internal gives access to all classes in the same assembly. By this reasoning, protected internal is protected AND internal (you give access to both derived classes and classes in same assembly). Most people think of it the other way around (adding restrictions instead of taking them away). – Lucas May 21 at 3:59

2 Answers

vote up 3 vote down check

I have rarely needed to use this access modifier combination as I think that in all but the most extreme circumstances, it's an indicator of poor design. However, sometimes it is necessary to have helper classes like type converters and editors access the method inside your assembly, but only allow derived classes to access it in other use cases.

An example might be a call that turns a type into a string for the type converter. ToString() generally isn't used for this purpose so you might have a ToPersistableString() call that you want your type converter to use, so you make it internal. Then you decide that people deriving from your class may well want to use this call as part of their own persistence scheme for their derived class so you make it protected as well.

.NET Framework Use
AccessibilityNotifyClients on Control is protected internal. Using Reflector, I can see that this was done so that the CheckedItemCollection of CheckListBox could access it when changing checked states.

link|flag
vote up 1 vote down

I've used it for internal methods that you wanted to be able to use in a separate name space for unit testing, the unit test name space contained a subclass of the class. which allowed the protected methods to be accessed.

That said there is an argument to make everything public for unit testing.

link|flag

Your Answer

Get an OpenID
or

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