... | ... | @@ -60,11 +60,11 @@ Doteraz sme používali členské premenné, ku ktorým sme mali prístup pomoco |
|
|
get
|
|
|
{
|
|
|
//other magic may happen here
|
|
|
return MyValue;
|
|
|
return _myProperty;
|
|
|
}
|
|
|
private set
|
|
|
{
|
|
|
MyValue = value; //value is implicitly declared as the input value
|
|
|
_myProperty = value; //value is implicitly declared as the input value
|
|
|
//other magic may happen here
|
|
|
}
|
|
|
}
|
... | ... | |