Question:Suppose a class is declared as a protected internal: protected internal class A { } Which statement is correct with regards to its accessibility?
A This class can be accessed by code in the same assembly, or by any derived class in another assembly.
B This class can only be accessed by code which is in the same assembly.
C This class can only be accessed by code which is in the derived class (i.e. classes derived from Class A) and which are in the same assembly.
D This class can be accessed by any code whether in the same assembly or not.
+ AnswerC
+ Report