System.util.Properties.this C# (CSharp) Method

this() public method

public this ( string key ) : string
key string
return string
        public virtual string this[string key]
        {
            get {
                string retval;
                _col.TryGetValue(key, out retval);
                return retval;
            }

            set {
                _col[key] = value;
            }
        }