What is the purpose of INotifyPropertyChanged?

Technology CommunityCategory: XamarinWhat is the purpose of INotifyPropertyChanged?
VietMX Staff asked 3 years ago

It notifies the client that a value of specified property is changed. Generally, we implement this interface to the object (ViewModel) which is bound to the target UI elements.