I create a sample class in vs2010.
Through Class View, I see the default access modifier for Main is internal.
I also see some people say that the default ac
Private members are accessible only within the body of the class in which they are declared.
Internal types or members are accessible only within files in the same assembly
Internal 'is like' public but only for all elements of the same assembly. Class1 of assembly1 cannot 'see' or access any internal element of assembly2.