I\'m setting up some demo code for a beginner session on accessibility and I found that I am able to access an internal protected property from a derived class. What am I missin
Late answer but I got caught with the same issue. Eventualy I came up with a partial solution.
internal Int MyInt { get; protected set; }
It is still visible within the assembly but at least only inherithing classes can actualy change it. It is enough for what I wanted.