Home »

What is the use of Internal keyword?

Question ListCategory: .NETWhat is the use of Internal keyword?
denielshakespeare5 author asked 8 years ago
1 Answers
jamessmith05 author answered 8 years ago

Internal keyword is one of the access specifier available in .NET framework , that makes a type visible in a given assembly , for e.g : a single dll can contain multiple modules , essentially a multi file assembly , but it forms a single binary component , so any type with internal keyword will be visible throughout the assembly and can be used in any of the modules .

Please login or Register to Submit Answer