Exemplo n.º 1
0
 public KeysCollection(MtObservableSortedDictionary <TK, TV> owner) : base(owner, x => x.Key)
 {
 }
Exemplo n.º 2
0
 public ValueCollection(MtObservableSortedDictionary <TK, TV> owner) : base(owner, x => x.Value)
 {
 }
Exemplo n.º 3
0
 protected ProxyCollection(MtObservableSortedDictionary <TK, TV> owner,
                           Func <KeyValuePair <TK, TV>, TT> selector)
 {
     Owner     = owner;
     _selector = selector;
 }