Example #1
0
        private void AttachCollectionChangeListener(object target)
        {
            var newTarget = target as INotifyCollectionChanged;

            if (newTarget != null)
            {
                listener.Subscribe(newTarget);
            }
        }
Example #2
0
 private void Attach()
 {
     listener.Subscribe(this);
 }