Ejemplo n.º 1
0
 object IDictionary.this[object key]
 {
     get { return(KeyValuePair.Get(this, (string)key)); }
     set { KeyValuePair.Set(this, (string)key, (string)value); }
 }
Ejemplo n.º 2
0
 public string this[string key]
 {
     get { return(KeyValuePair.Get(this, key)); }
     set { KeyValuePair.Set(this, key, value); }
 }