ok, let me start with an example. This is my base class in another assembly
namespace BL { public class BasicClass { protected internal void func() {
Now this is my derived class in another assembly
namespace DL { public class DerivedClass:BasicClass { private void hello() { func(); } } }
I can call func() from the base class, therefore, it shows that the access modifier property is protected , but as for the access modifier property internal . Should it be allowed access to func() inside another assembly, since it is declared internal. If so, then why call it protected internal and not just protected
iJade source share