Encapsulation
Mon Mar 04 2024 19:06:38 GMT+0000 (Coordinated Universal Time)
Saved by
@brandonxedit
public class Person
{
private string name;
private int age;
// Encapsulated methods to access private members
public string GetName()
{
return name;
}
public void SetName(string newName)
{
name = newName;
}
public int GetAge()
{
return age;
}
public void SetAge(int newAge)
{
age = newAge;
}
}
content_copyCOPY
Comments