InternalsVisibleTo with "private protected"

1.9k Views Asked by At

A new version of the .Net framework and C# offer a new access modifier: private protected. In order to access such a member, the class must both

  • reside in the same assembly and
  • derive from the defining class.

(In contrast to protected internal where fulfilling one of the conditions is enough)

For testing purposes, the InternalsVisibleTo attribute comes in very handy when I like to access non-public members of a class from my test class which is in a different assembly.

How does private protected interact with the InternalsVisibleTo attribute? Can I access such member from a class residing in the "friend" assembly which derives from the original class?

(I cannot try that on my machine, because the version of Visual Studio and C# is too old).

2

There are 2 best solutions below

1
On

As of now, the documentation for InternalVisibleTo makes mention of both internal and private protected within the Remarks section.

(https://learn.microsoft.com/en-us/dotnet/api/system.runtime.compilerservices.internalsvisibletoattribute?view=netcore-2.2#remarks)

3
On

Yes, classes in you friendly test-assembly that derives from your base-class will get access to private protected members.

The proposal for the new access modifier is explicit in saying what CLR access specifier it maps to (protectedAndInternal), but does not make any note about how this in turns relates to InternalVisibleTo.