InterviewSolution
| 1. |
What Is Inotifypropertychanged? |
|
Answer» The INotifyPropertyChanged interface is used to notify clients, TYPICALLY binding clients, that a property value has changed.For EXAMPLE, consider a STOCK object with a property called StockCount.
The INotifyPropertyChanged interface is used to notify clients, typically binding clients, that a property value has changed.For example, consider a Stock object with a property called StockCount. |
|