What is Internal access modifier in C#?

Submitted by: Administrator
The internal keyword is an access modifier for types and type members ie. we can declare a class as internal or its member as internal. Internal members are accessible only within files in the same assembly (.dll). In other words, access is limited exclusively to classes defined within the current project assembly.
Submitted by: Administrator

Read Online OOP Job Interview Questions And Answers