What is the difference between the internal and private access modifiers in C#?
|
|
|||||||||||||||
|
|
internal is for assembly scope (i.e. only accessible from code in the same .exe or .dll)
and |
|||||||||||||||
|
|
For (hopefully) obvious reasons, an outer (non-nested) class cannot be declared To answer the question you forgot to ask, |
||||
|
|
|
Private members are accessible only within the body of the class or the struct in which they are declared. Internal types or members are accessible only within files in the same assembly |
|||||||
|