public void ClearLinkSources()
        {
            if (_topicLinks == null || _topicLinks.Count == 0)
            {
                return;
            }

            _topicLinks.Clear();
        }
Beispiel #2
0
        public void Clear()
        {
            if (_listItems.Count == 0)
            {
                return;
            }

            _listItems.Clear();
        }
        public void Clear()
        {
            if (_listNamespaces.Count == 0)
            {
                return;
            }

            _listNamespaces.Clear();
        }
Beispiel #4
0
        public void Clear()
        {
            if (_listTypes.Count == 0)
            {
                return;
            }

            _listTypes.Clear();
        }
Beispiel #5
0
 /// <summary>
 /// Removes all the <see cref="ReferenceVsNetItem"/> items in this
 /// reference source.
 /// </summary>
 public void Clear()
 {
     _listItems.Clear();
 }