Which access modifier cannot be used for the class defined right under the namespace?
public
internal
protected
The class may omit an access modifier.
Tip
Any class right under namespace cannot use private, protected, protected internal access modifier. If no access modifier is specified, it is internal by default.