Access Modifier in .net class
Following are the access modifier in class of .net framework. 1. Public Allow access to class member from any other class. 2. Private Allow access to class member from same class only. 3. Protected Allow access to class member from same class and inherited classes. 4. Internal Allow access to the class member in same