You need to allow a consumer of a class to modify a private data member.
What should you do?
In this example (see below), the Employee class contains two private data members, name and salary. As private members, they cannot be accessed except by member methods. Public methods named GetName and Salary are added to allow controlled access to the private members. The name member is accessed by way of a public method, and the salary member is accessed by way of a public read-only property.
Note: The private keyword is a member access modifier. Private access is the least permissive access level. Private members are accessible only within the body of the class or the struct in which they are declared
Example:
class Employee2
{
privatestring name = "FirstName, LastName";
privatedouble salary = 100.0;
publicstring GetName()
{
return name;
}
publicdouble Salary
{
get { return salary; }
}
}
Currently there are no comments in this discussion, be the first to comment!