well, Types of Access Specifiers
* public - The members (Functions & Variables) declared as public can be accessed from anywhere.
* private - Private members cannot be accessed from outside the class. This is the default access specifier for a member, i.e if you do not specify an access specifier for a member (variable or function), it will be private. Therefore, string PhoneNumber; is equivalent to private string PhoneNumber;
* protected - Protected members can be accessed only from the child classes.
* internal - Internal members can be accessed from anywhere within the application. This is the default access specifier for a class.
Answered by .... .....
at
7:02 AM on July 12, 2008