System.util.Properties.this C# (CSharp) Méthode

this() public méthode

public this ( string key ) : string
key string
Résultat string
        public virtual string this[string key]
        {
            get {
                string retval;
                _col.TryGetValue(key, out retval);
                return retval;
            }

            set {
                _col[key] = value;
            }
        }