Revenj.Configuration.this C# (CSharp) Method

this() public method

public this ( string key ) : string
key string
return string
        public string this[string key]
        {
            get
            {
                string value;
                if (Settings.TryGetValue(key, out value))
                    return value;
                return null;
            }
        }