public ValueCollection(ExposedDictionary <TKey, TValue> dictionary) { if (dictionary == null) { throw new ArgumentNullException("dictionary"); } this.dictionary = dictionary; }
internal Enumerator(ExposedDictionary <TKey, TValue> dictionary) : this() { this.dictionary = dictionary; stamp = dictionary.generation; }
public ShimEnumerator(ExposedDictionary <TKey, TValue> host) { host_enumerator = host.GetEnumerator(); }
internal Enumerator(ExposedDictionary <TKey, TValue> host) { host_enumerator = host.GetEnumerator(); }
public void Dispose() { dictionary = null; }