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
By combining the protected and internal keywords, a class member can be marked protected internal — only derived types or types within the same assembly can access that member.