Код: Выделить всё
using System;
class Person3
{
private string _name = "Jimmy"; // field
// Getter method to access the field
public string GetName()
{
return _name;
}
// Setter method to modify the field
public void SetName(string name)
{
_name = name;
}
}
public class HelloWorld
{
public static void Main(string[] args)
{
Person3 person3 = new Person3();
Console.WriteLine(person3.GetName()); // Jimmy
person3.SetName("Jack");
Console.WriteLine(person3.GetName()); // Jack
}
}
Подробнее здесь: https://stackoverflow.com/questions/796 ... or-setters