What is the default access modifier for classes, methods, members, constructors, delegates and interfaces?
Class is Internal by default.
Interface is Internal by default.
Interface members are public by default. (Interfaces won't allow us to specify any kind of accessibility to it's members.)
Note: If you try to specify any access specifier to interface's members then, it shows compile error.
Struct is Internal by default.