Pickaxe.Runtime.RuntimeBase.this C# (CSharp) Method

this() public method

public this ( string key ) : string
key string
return string
        public string this[string key]
        {
            get
            {
                if (!_args.ContainsKey(key))
                    return null;

                return _args[key];
            }
            set
            {
                _args[key] = value;
            }
        }