YAMP.ObjectValue.this C# (CSharp) Method

this() public method

Gets or sets the value for the given key.
public this ( String key ) : Value
key String
return Value
        public Value this[String key]
        {
            get { return _values[key]; }
            set { _values[key] = value; }
        }