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