I\'m setting up some demo code for a beginner session on accessibility and I found that I am able to access an internal protected property from a derived class. What am I missin
Basically, it doesn't seem to work like that.
See - http://msdn.microsoft.com/en-us/library/ba0a1yw2(VS.80).aspx
protected internal acts as an OR - access is restricted to derived classes or to the current assembly.
It looks like protected internal means protected or internal.