Answer:
The private keyword is a member access modifier ie. we can't explicitly declare a class as Private, however if do not specify any access modifier to the class, its scope will be assumed as Private. Private access is the least permissive access level of all access modifiers.
Private members are accessible only within the body of the class or the struct in which they are declared. This is the default access modifier for the class declaration.
For more details, see http://msdn.microsoft.com/en-us/library/st6sy9xe(VS.71).aspx
Asked In: Many Interviews |
Alert Moderator