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