Class can be internal not protected or not even protected internal. Class can have only two access modifiers Public and internal.
if any field or method having access modifier protected internal then this field available to the others assemblies class and as well as class whose inharits this class.
Hi A class contain different access modifier. The Protected and Protected Internal are two access modifier..Protected ; can only access with in the base class and also accessible from the derive class.Protected Internal ; can only access with in base class and from the current assembly.