System.Collections.Specialized.StringDictionaryWrapper.this C# (CSharp) Method

this() public method

public this ( string key ) : string
key string
return string
        public override string this[string key]
        {
            get { return _contents[key]; }
            set { _contents[key] = value; }
        }