Describe the accessibility modifier “protected internal”. | C# interview Questions 29

The “protected internal” accessibility modifier in C# allows a member to be accessed by any code within the same assembly (internal) and by derived classes (protected) even if they are in different assemblies. This combines the features of both “protected” and “internal” access levels.

Leave a Reply

Your email address will not be published. Required fields are marked *