OpenStory.Common.ParameterList.this C# (CSharp) Method

this() public method

Gets the value of a parameter.
public this ( string key ) : string
key string The name of the parameter.
return string
        public string this[string key]
        {
            get
            {
                string value;
                this.parameters.TryGetValue(key, out value);
                return value;
            }
        }