Let, I have an ObservableCollection. I m binding it's Count property with the Text property of a TextBlock. As one or more items added or deleted from the collection the Count get updated. As I know ObservableCollection implements both the INotifyPropertyChanged and INotifyCollectionChanged, so when the Count property is changed then my view should be updated. I am expecting the TextBlock that is bind with the Count property should show the updated count. But anyhow NotifyPropertyChange is not being called for the Count property!
Here how I am binding the Text property with Count:
<TextBlock Text="{Binding MyObservableCollection.Count}" />
Is there any way to notify property change for the Count property of an ObservableCollection?

other way:
you can add a Count to your view model, when you add or remove item from MyObservableCollection, you update Count manual, and invoke NotifyPropertyChange.