Object-oriented programming (OOPs) Question:
What is Internal access modifier in C#?
Answer:
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.
Previous Question | Next Question |
What is Protected access modifier in C#? | What is Private access modifier in C#? |