Код: Выделить всё
class Program
{
static int _value;
static int MyValue
{
get { return _value; }
set { _value = 5; }
}
static void Main()
{
Console.WriteLine(Program.MyValue); //This line print 0 (defoult value of int variables)and its normal
Program.MyValue = 10; //after calling the Set accssor we will see that
Console.WriteLine(Program.MyValue); //The result is 5
Console.ReadLine();
}
РЕДАКТИРОВАТЬ:
Кажется, что мы имеем здесь свойство только для чтения со значением по умолчанию я прав?
Подробнее здесь: https://stackoverflow.com/questions/686 ... ue-keyword
Мобильная версия