Ejemplo n.º 1
0
 public ValueCollection(RehashableDictionary <K, V> dictionary)
     : base(dictionary)
 {
 }
Ejemplo n.º 2
0
 void DictionaryChanged(object sender, RehashableDictionary <K, V> .DictionaryEventArgs e)
 {
     Invalid = true;
 }
Ejemplo n.º 3
0
 public ItemsCollection(RehashableDictionary <K, V> dictionary)
     : base(dictionary)
 {
     this.list = new List <KeyValue>();
 }
Ejemplo n.º 4
0
 public KeysValuesBase(RehashableDictionary <K, V> dictionary)
 {
     Dictionary          = dictionary;
     Dictionary.Added   += DictionaryChanged;
     Dictionary.Removed += DictionaryChanged;
 }
Ejemplo n.º 5
0
 public ItemsCollection(RehashableDictionary <K, V> dictionary, List <KeyValue> list)
     : base(dictionary)
 {
     this.list = list;
 }