SmartConfig.Data.Setting.this C# (CSharp) Method

this() public method

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