Example #1
0
        public void AddRef()
        {
            if (_root == null) //disposed
            {
                return;
            }

            if (_root != this && refCount == 0)
            {
                _root.AddRef();
            }

            refCount++;
        }