Пример #1
0
 internal NotifyProperty(string name, NotifyPropertyChanged owner, T initialValue)
     : this(name, owner)
 {
     this.value = initialValue;
 }
Пример #2
0
 internal NotifyProperty(string name, NotifyPropertyChanged owner)
 {
     this.name  = name;
     this.owner = owner;
 }