Exemple #1
0
            }                   // End GetEnumerator()

            #endregion

            #region Internal Methods
            /// <summary>
            /// If I could, I would turn this into a  friend method for the AVLTreeDictionary,
            /// but C# doesn't do friends. Internal is the best I can do; this way, anyone
            /// using the library won't be able to see this method.
            /// </summary>
            internal void ClearOut()
            {
                _dictionary = null;
            }
Exemple #2
0
 internal ValueCollection(AVLTreeDictionary <TKey, TValue> dictionary)
 {
     _dictionary = dictionary;
 }