protected virtual void RaiseCollectionChanged()

in GameOfLife/Common/NotifyCollection.cs [58:65]


        protected virtual void RaiseCollectionChanged()
        {
            var handler = CollectionChanged;
            if (handler != null)
            {
                handler(this, new NotifyCollectionChangedEventArgs(NotifyCollectionChangedAction.Reset));
            }
        }