C# 7.2 introduced the private protected
modifier, whats the difference to internal protected
?
From the doc:
A private protected member is accessible by types derived from the containing class, but only within its containing assembly.
Isn't that exactly what internal protected
does?