I am new to C#.What is internal access modofier? I have googled it but getting some difficult terms like assembly etc. What is it in simple terms?

Recommended Answers

All 2 Replies

internal keyword

It means the member can only be accessed within a certain scope.
The scope is the scope of the assembly.

So for example, if you have a DLL which does some stuff internally, the external code which uses the DLL can't access the internal stuff.

Internal is not the default access modifier. See this for more information

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.