🎴 Flashcard Mode
C# and ASP.NET Programming Quiz
Card1 / 20
Mastered0
Review0
QuestionClick to flip
If method is marked as protected internal who can access it?
AnswerClick to flip back
A
Access is limited to current assembly or types derived from the containing class.
💡 Explanation:
The protected internal access modifier in C# combines two access levels: protected AND internal. Members marked protected internal can be accessed from within the same assembly OR from derived classes (even in different assemblies). It's a union of both access modifiers, not an intersection.