Object-oriented programming (OOPs) Question:

Download Job Interview Questions and Answers PDF

What is Internal access modifier in C#?

OOP Interview Question
OOP Interview Question

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.

Download OOP Interview Questions And Answers PDF

Previous QuestionNext Question
What is Protected access modifier in C#?What is Private access modifier in C#?