What is Protected Internal access modifier in C#?

Submitted by: Administrator
Protected Internal is a access modifiers for the members (methods or functions) ie. you can't declare a class as protected internal explicitly. The members access is limited to the current assembly or types derived from the containing class.

Protected Internal means the method is accessible by anything that can access the protected method UNION with anything that can access the internal method.
Submitted by: Administrator

Read Online OOP Job Interview Questions And Answers