Exemplo n.º 1
0
 internal NotifyProperty(string name, NotifyPropertyChanged owner, T initialValue)
     : this(name, owner)
 {
     this.value = initialValue;
 }
Exemplo n.º 2
0
 internal NotifyProperty(string name, NotifyPropertyChanged owner)
 {
     this.name  = name;
     this.owner = owner;
 }